CI: add a version tag to correlate release versions with commits (#4572)

* add step to tag commit with release version

* add step to tag commit with release version

* Rename step to “Create Tag”

* Fix name
This commit is contained in:
Andrew Glaze 2023-03-22 08:17:28 -04:00 committed by GitHub
parent ba95ee54ab
commit 009c1101d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -112,6 +112,17 @@ jobs:
repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}
token: ${{ secrets.RELEASE_TOKEN }}
- name: Create tag
uses: actions/github-script@v5
with:
script: |
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/${{ steps.version_info.outputs.build_version }}',
sha: context.sha
})
flatpak_release:
uses: ./.github/workflows/flatpak.yml
needs: release