Skip to content

Commit 5e1f411

Browse files
committed
(re)named Release
1 parent aa66be6 commit 5e1f411

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,14 @@ jobs:
3131
3232
- name: Build and post-process Linux packages
3333
run: npm run build
34+
35+
- name: Rename release
36+
if: startsWith(github.ref, 'refs/tags/')
37+
run: |
38+
TAG_NAME="${GITHUB_REF#refs/tags/}"
39+
RELEASE_ID=$(curl -s -H "Authorization: token $GH_TOKEN" \
40+
https://api.github.com/repos/${{ github.repository }}/releases/tags/$TAG_NAME | jq -r '.id')
41+
curl -X PATCH -H "Authorization: token $GH_TOKEN" \
42+
-H "Content-Type: application/json" \
43+
https://api.github.com/repos/${{ github.repository }}/releases/$RELEASE_ID \
44+
-d "{\"name\":\"Emulsion $TAG_NAME\"}"

builder.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ extraResources:
2727
publish:
2828
provider: github
2929
publishAutoUpdate: true
30-
name: "Emulsion ${version}"
3130

3231
linux:
3332
executableName: emulsion

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "emulsion",
3-
"version": "0.9.69",
3+
"version": "0.9.70",
44
"summary": "Better gaming throught chemistry",
55
"description": "Display your games collection into responsive galleries, manage game metadata, cover art and emulator configuration. Launch your games in style.",
66
"homepage": "https://yphil.gitlab.io/emulsion",

0 commit comments

Comments
 (0)