Skip to content

Commit 9e084ab

Browse files
committed
fix(ci): remove prerelase
1 parent 6227e49 commit 9e084ab

2 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,13 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- run: echo "Building..."
11+
- run: echo "Building..."
12+
13+
uses: dsaltares/fetch-gh-release-asset@master
14+
with:
15+
repo: "dsaltares/godot-wild-jam-18"
16+
version: "latest"
17+
file: "ui-ssr.zip"
18+
token: ${{ secrets.YOUR_TOKEN }}
19+
20+
- run: ls -la

.releaserc.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
2-
"branches": { "name": "master", "prerelease": true },
32
"plugins": [
43
"@semantic-release/commit-analyzer",
54
"@semantic-release/release-notes-generator",
65
["@semantic-release/github", {
76
"assets": [
8-
{"path": "./public-ssr.zip", "name": "ui-ssr-${nextRelease.version}", "label": "UI SSR Distribution"},
9-
{"path": "./public-csr.zip", "name": "ui-css-${nextRelease.version}", "label": "UI CSR Distribution"},
10-
{"path": "./functions-dist.zip", "name": "functions-${nextRelease.version}", "label": "Functions Distribution"}
7+
{"path": "./public-ssr.zip", "name": "ui-ssr.zip", "label": "UI SSR Distribution v${nextRelease.version}"},
8+
{"path": "./public-csr.zip", "name": "ui-css.zip", "label": "UI CSR Distribution v${nextRelease.version}"},
9+
{"path": "./functions-dist.zip", "name": "functions.zip", "label": "Functions Distribution v${nextRelease.version}"}
1110
]
1211
}]
1312
]

0 commit comments

Comments
 (0)