From 27a1c1d9e0b282c4828ab43f4eb4bfd8904dcb18 Mon Sep 17 00:00:00 2001 From: Bruce Markham <219281+brucificus@users.noreply.github.com> Date: Wed, 27 Sep 2023 19:22:45 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Updates=20Publish=20Workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cee95f8..dfd62cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,15 +15,15 @@ jobs: steps: - run: echo "Beginning release." - name: "Transfer 'version-json' artifact from triggering workflow" - uses: pwshrc/actions-transfer-artifact@v0.3.7 + uses: pwshrc/actions-transfer-artifact@v0.3.9 with: name: 'version-json' - name: "Transfer 'PSGallery-package' artifact from triggering workflow" - uses: pwshrc/actions-transfer-artifact@v0.3.7 + uses: pwshrc/actions-transfer-artifact@v0.3.9 with: name: 'PSGallery-package' - name: "Transfer 'release-notes' artifact from triggering workflow" - uses: pwshrc/actions-transfer-artifact@v0.3.7 + uses: pwshrc/actions-transfer-artifact@v0.3.9 with: name: 'release-notes' @@ -36,7 +36,7 @@ jobs: uses: actions/checkout@v4 - name: Populate GitVersion variables id: gitversion_vars - uses: pwshrc/actions-determine-version@v0.8.5 + uses: pwshrc/actions-determine-version@v0.8.6 with: mode: 'download' - name: "Get artifact: PSGallery-package" @@ -46,12 +46,12 @@ jobs: path: ./out/ - name: Publish Prerelease to PSGallery (WhatIf) if: steps.gitversion_vars.outputs.PreReleaseTag != '' - uses: pwshrc/actions-invoke-lib-dependent-pwsh@v0.2.8 + uses: pwshrc/actions-invoke-lib-dependent-pwsh@v0.2.9 with: run: ./build/publish.ps1 -NUGET_KEY "abc" -Prerelease -WhatIf - name: Publish Release to PSGallery (WhatIf) if: steps.gitversion_vars.outputs.PreReleaseTag == '' - uses: pwshrc/actions-invoke-lib-dependent-pwsh@v0.2.8 + uses: pwshrc/actions-invoke-lib-dependent-pwsh@v0.2.9 with: run: ./build/publish.ps1 -NUGET_KEY "abc" -WhatIf @@ -64,7 +64,7 @@ jobs: uses: actions/checkout@v4 - name: Populate GitVersion variables id: gitversion_vars - uses: pwshrc/actions-determine-version@v0.8.5 + uses: pwshrc/actions-determine-version@v0.8.6 with: mode: 'download' - name: "Get artifact: PSGallery-package" @@ -74,14 +74,14 @@ jobs: path: ./out/ - name: Publish Prerelease to PSGallery if: steps.gitversion_vars.outputs.PreReleaseTag != '' - uses: pwshrc/actions-invoke-lib-dependent-pwsh@v0.2.8 + uses: pwshrc/actions-invoke-lib-dependent-pwsh@v0.2.9 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/actions-invoke-lib-dependent-pwsh@v0.2.8 + uses: pwshrc/actions-invoke-lib-dependent-pwsh@v0.2.9 env: NUGET_KEY: ${{ secrets.NUGET_KEY }} with: @@ -96,12 +96,12 @@ jobs: uses: actions/checkout@v4 - name: Get GitVersion id: gitversion_vars - uses: pwshrc/actions-determine-version@v0.8.5 + uses: pwshrc/actions-determine-version@v0.8.6 with: mode: 'download' - name: Get release notes id: get-releasenotes - uses: pwshrc/actions-create-release-notes@v0.8.6 + uses: pwshrc/actions-create-release-notes@v0.8.7 with: mode: 'download' github_token: "${{ secrets.GITHUB_TOKEN }}"