Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d89573b
Delete old "Content" templates
Jaykul Aug 12, 2024
131ed80
Add Invoke-ScriptGenerator
Jaykul Aug 12, 2024
3c60559
Convert alias update code to a generator
Jaykul Aug 12, 2024
c284527
Convert Using fixer to a Script Generator
Jaykul Aug 12, 2024
f42d7cd
Add a couple of refactoring Aspect-Oriented Programming generators
Jaykul Aug 12, 2024
e81285e
Fix the tests
Jaykul Aug 13, 2024
dfc3b5e
Look for the template(s) in a subfolder of the module source directory
Jaykul Aug 13, 2024
71f07ec
Performance and Debugging improvements
Jaykul Aug 14, 2024
522560f
Give in and add a second parameter set on ConvertToAst so it can prop…
Jaykul Aug 22, 2024
7d1da15
Allow the Code parameter set to fall back to being a path (for now?)
Jaykul Sep 4, 2024
c6d7492
Explicitly specify the parameter name for ScriptGenerator
Jaykul Sep 4, 2024
2f51f52
Add tests for ConvertToAst
Jaykul Sep 4, 2024
c9a5bf2
Add CompressToBase64
Jaykul Sep 4, 2024
318c30d
Add ImportBase64Module
Jaykul Sep 4, 2024
9c67e81
A version of ConvertTo-Script that packs modules as ps1
Jaykul Sep 4, 2024
befd584
Fix docs typo
Jaykul Apr 26, 2025
2230545
Make parameter positions explicit on ConverToAst
Jaykul Apr 26, 2025
802604e
Add GUID parameter for ConvertTo-Script
Jaykul Jul 11, 2025
bd91dfd
Fix GUID and Version in ConvertTo-Script output
Jaykul Jul 11, 2025
f108b73
#110 Support SemVer 2.0 by converting the prerelease
Jaykul Mar 3, 2026
35d5033
Stop mocking so many tests...
Jaykul Mar 11, 2026
e43d795
Update to Earthbuild
Jaykul Apr 15, 2026
5d4bfa0
Fix PSScriptAnalyzer warnings
Jaykul Apr 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,38 @@
name: CI

on:
push: {}
push:
branches: [ main ]
pull_request:
branches: [ main ]

permissions:
contents: write # to tag the repository

jobs:
build:
runs-on: ubuntu-latest
env:
FORCE_COLOR: 1
steps:
- uses: earthly/actions-setup@v1
- name: Install EarthBuild
uses: EarthBuild/actions-setup@v2.0.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
version: 'latest' # or pin to an specific version, e.g. "0.8.1"

- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0

- name: earthly +test
- name: earth +test
if: github.ref != 'refs/heads/main'
run: earthly --strict +test
run: earth --strict +test

- name: earthly +push
- name: earth +push
if: github.ref == 'refs/heads/main'
run: earthly --push --secret NUGET_API_KEY --secret PSGALLERY_API_KEY --strict +all
run: earth --push --secret NUGET_API_KEY --secret PSGALLERY_API_KEY --strict +all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
Expand Down Expand Up @@ -63,7 +69,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
os: [ windows-latest, ubuntu-latest, macos-latest ]
steps:
- name: Download build.requires.psd1
uses: actions/download-artifact@v4
Expand Down
643 changes: 0 additions & 643 deletions Content/HelpFiles/Get-Process-help.xml

This file was deleted.

Binary file removed Content/HelpFiles/Help_Style.xslt
Binary file not shown.
25 changes: 0 additions & 25 deletions Content/HelpFiles/ReadMe.md

This file was deleted.

105 changes: 0 additions & 105 deletions Content/HelpFiles/Sample1-help.xml

This file was deleted.

158 changes: 0 additions & 158 deletions Content/HelpFiles/Sample2-help.xml

This file was deleted.

Loading
Loading