We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2589c9 commit 8280eedCopy full SHA for 8280eed
.github/workflows/release.yml
@@ -103,7 +103,13 @@ jobs:
103
cd /tmp/linkstack
104
105
# Get the repository name in the format 'OWNER/REPO'
106
- REPO_NAME="LinkStackOrg/LinkStack"
+ REPO_NAME="YamiDoesDev/LinkStack"
107
+
108
+ # create release
109
+ gh release create "${GITHUB_REF##*/}" \
110
+ --title "${GITHUB_REF##*/}" \
111
+ --notes "Automated release for ${GITHUB_REF##*/}" \
112
+ -R "$REPO_NAME"
113
114
# Upload 'update.zip'
115
gh release upload "${GITHUB_REF##*/}" "update.zip" --clobber -R "$REPO_NAME"
0 commit comments