Publish Module #31
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish Module | |
| permissions: | |
| contents: read | |
| on: | |
| # Manual-dispatch only, so releases are deliberate. | |
| workflow_dispatch: | |
| jobs: | |
| publish: | |
| name: Publish to PSGallery | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build and Publish | |
| shell: pwsh | |
| env: | |
| PSGALLERY_API_KEY: ${{ secrets.GALLERY_KEY }} | |
| run: ./build.ps1 -Task Publish -Bootstrap |