aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorTSRBerry <20988865+TSRBerry@users.noreply.github.com>2022-10-21 10:31:38 +0200
committerGitHub <noreply@github.com>2022-10-21 10:31:38 +0200
commitc7cf1cbc3521657d3fa1619f187df632561d2528 (patch)
tree072ef2c3782cf6e9cd66cb0eadff5ad86a45dfe5 /.github/workflows/release.yml
parentd8e487d018b156270e6cfdbbeaacacd62d270e7f (diff)
CI: Update workflows (#3774)
* ci: Update workflows * gha: Add no-build switch to test action
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index e68ae3a6..af665d51 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -25,8 +25,8 @@ jobs:
RYUJINX_TARGET_RELEASE_CHANNEL_REPO: "release-channel-master"
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-dotnet@v1
+ - uses: actions/checkout@v3
+ - uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Ensure NuGet Source
@@ -36,8 +36,8 @@ jobs:
- name: Get version info
id: version_info
run: |
- echo "::set-output name=build_version::${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}"
- echo "::set-output name=git_short_hash::$(git rev-parse --short "${{ github.sha }}")"
+ echo "build_version=${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}" >> $GITHUB_OUTPUT
+ echo "git_short_hash=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT
shell: bash
- name: Configure for release
run: |