diff options
author | pg9182 <96569817+pg9182@users.noreply.github.com> | 2023-04-21 20:34:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-22 02:34:48 +0200 |
commit | 7c2b56b1e978a23c55bb1d587a6633a7de81185c (patch) | |
tree | d3b3a5d64016ac3de9c9fd3e100beb80d458e5b7 /.github | |
parent | 10b6839d9c55568efe8241983c9c92212900fe4e (diff) | |
download | NorthstarLauncher-7c2b56b1e978a23c55bb1d587a6633a7de81185c.tar.gz NorthstarLauncher-7c2b56b1e978a23c55bb1d587a6633a7de81185c.zip |
Replace `set-output` in GitHub Actions workflows (#452)v1.13.0-rc2v1.13.0-rc1v1.13.0
`set-output` is being deprecated as per https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ba9e412..1ac19129 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - name: Extract Short Commit Hash id: extract shell: bash - run: echo ::set-output name=commit::`git rev-parse --short HEAD` + run: echo commit=$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT - name: Upload Build Artifact uses: actions/upload-artifact@v3 with: |