aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMary Guillemard <mary@mary.zone>2024-03-02 12:58:03 +0100
committerMary Guillemard <mary@mary.zone>2024-03-02 12:58:03 +0100
commitbc4d99a0786dbcbfde62d3bdeb98ed3d12c94852 (patch)
treeabb95a7678d7ea8332afd7bd86c06e360e3c94fb
parentec6cb0abb4b7669895b6e96fd7581c93b5abd691 (diff)
ci: try to fix toctou on release creation1.1.1217
Signed-off-by: Mary Guillemard <mary@mary.zone>
-rw-r--r--.github/workflows/release.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 133c2fad..9843487a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -44,6 +44,17 @@ jobs:
sha: context.sha
})
+ - name: Create release
+ uses: ncipollo/release-action@v1
+ with:
+ name: ${{ steps.version_info.outputs.build_version }}
+ tag: ${{ steps.version_info.outputs.build_version }}
+ body: "For more information about this release please check out the official [Changelog](https://github.com/Ryujinx/Ryujinx/wiki/Changelog)."
+ omitBodyDuringUpdate: true
+ owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}
+ repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}
+ token: ${{ secrets.RELEASE_TOKEN }}
+
release:
name: Release for ${{ matrix.platform.name }}
runs-on: ${{ matrix.platform.os }}