Release Changes #73
This file contains 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: Release Changes | |
on: | |
workflow_run: | |
workflows: ["Validate Changes"] | |
branches: [main] | |
types: | |
- completed | |
jobs: | |
begin-release: | |
name: Begin Release | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.conclusion == 'success' | |
steps: | |
- run: echo "Beginning release." | |
- name: "Transfer 'version-json' artifact from triggering workflow" | |
uses: pwshrc/[email protected] | |
with: | |
name: 'version-json' | |
- name: "Transfer 'PSGallery-package' artifact from triggering workflow" | |
uses: pwshrc/[email protected] | |
with: | |
name: 'PSGallery-package' | |
- name: "Transfer 'release-notes' artifact from triggering workflow" | |
uses: pwshrc/[email protected] | |
with: | |
name: 'release-notes' | |
test-publish-psgallery-package: | |
name: Test Publish to PSGallery | |
runs-on: ubuntu-latest | |
needs: [begin-release] | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Populate GitVersion variables | |
id: gitversion_vars | |
uses: pwshrc/[email protected] | |
with: | |
mode: 'download' | |
- name: "Get artifact: PSGallery-package" | |
uses: actions/download-artifact@v3 | |
with: | |
name: PSGallery-package | |
path: ./out/ | |
- name: Publish Prerelease to PSGallery (WhatIf) | |
if: steps.gitversion_vars.outputs.PreReleaseTag != '' | |
uses: pwshrc/[email protected] | |
with: | |
run: ./build/publish.ps1 -NUGET_KEY "abc" -Prerelease -WhatIf | |
- name: Publish Release to PSGallery (WhatIf) | |
if: steps.gitversion_vars.outputs.PreReleaseTag == '' | |
uses: pwshrc/[email protected] | |
with: | |
run: ./build/publish.ps1 -NUGET_KEY "abc" -WhatIf | |
publish-psgallery-package: | |
name: Publish to PSGallery | |
runs-on: ubuntu-latest | |
needs: [test-publish-psgallery-package] | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Populate GitVersion variables | |
id: gitversion_vars | |
uses: pwshrc/[email protected] | |
with: | |
mode: 'download' | |
- name: "Get artifact: PSGallery-package" | |
uses: actions/download-artifact@v3 | |
with: | |
name: PSGallery-package | |
path: ./out/ | |
- name: Publish Prerelease to PSGallery | |
if: steps.gitversion_vars.outputs.PreReleaseTag != '' | |
uses: pwshrc/[email protected] | |
env: | |
NUGET_KEY: ${{ secrets.NUGET_KEY }} | |
with: | |
run: ./build/publish.ps1 -NUGET_KEY "$env:NUGET_KEY" -Prerelease | |
- name: Publish Release to PSGallery | |
if: steps.gitversion_vars.outputs.PreReleaseTag == '' | |
uses: pwshrc/[email protected] | |
env: | |
NUGET_KEY: ${{ secrets.NUGET_KEY }} | |
with: | |
run: ./build/publish.ps1 -NUGET_KEY "$env:NUGET_KEY" | |
publish-github-release: | |
name: Publish GitHub Release | |
runs-on: ubuntu-latest | |
needs: [publish-psgallery-package] | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Get GitVersion | |
id: gitversion_vars | |
uses: pwshrc/[email protected] | |
with: | |
mode: 'download' | |
- name: Get release notes | |
id: get-releasenotes | |
uses: pwshrc/[email protected] | |
with: | |
mode: 'download' | |
github_token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: "Get artifact: PSGallery-package" | |
uses: actions/download-artifact@v3 | |
with: | |
name: PSGallery-package | |
path: ./out/ | |
- name: Publish GitHub release | |
id: publish_github_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: "${{ secrets.RELEASE_GITHUB_TOKEN }}" | |
name: "v${{ steps.gitversion_vars.outputs.SemVer }}" | |
tag_name: "v${{ steps.gitversion_vars.outputs.SemVer }}" | |
target_commitish: "${{ steps.gitversion_vars.outputs.Sha }}" | |
generate_release_notes: false | |
body_path: "${{ steps.get-releasenotes.outputs.filepath }}" | |
prerelease: ${{ steps.gitversion_vars.outputs.PreReleaseTag != '' }} | |
draft: false | |
files: ./out/*.nupkg | |
fail_on_unmatched_files: true |