Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit bbb204c

Browse files
authored
Point download link to correct location (#60)
* Point download link to correct location
1 parent 5e0668d commit bbb204c

2 files changed

Lines changed: 16 additions & 7 deletions

File tree

.github/CODEOWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
* @ErrorDodo @Sebane1
2+
3+
/.github/ @ErrorDodo
4+
5+
*.yml @ErrorDodo

.github/workflows/ReleaseVersion.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -149,27 +149,31 @@ jobs:
149149
if: ${{ steps.set_vars.outputs.should_release == 'true' }}
150150
id: prepare_assets
151151
shell: bash
152+
env:
153+
REPO_OWNER: ${{ github.repository_owner }}
154+
REPO_NAME: ${{ github.event.repository.name }}
155+
TAG_NAME: ${{ steps.set_vars.outputs.tag_name }}
152156
run: |
153157
BODY="## Release Notes
154-
155-
${{ env.commit_message }}
158+
159+
${{ steps.get_commit_message.outputs.commit_message }}
156160
157161
## Hashes:
158162
- **SHA256 Hash**: \`${{ env.sha256 }}\`
159163
- **MD5 Hash**: \`${{ env.md5 }}\`
160164
161165
## Download Link
162-
[Download the zip](./PenumbraModForwarder.zip)
166+
[Download the zip](https://github.com/${REPO_OWNER}/${REPO_NAME}/releases/download/${TAG_NAME}/PenumbraModForwarder.zip)
163167
"
164-
168+
165169
FILES="./publish/PenumbraModForwarder.zip
166170
./publish/PenumbraModForwarder.zip.sha256
167171
./publish/PenumbraModForwarder.zip.md5"
168-
172+
169173
echo "body<<EOF" >> "$GITHUB_OUTPUT"
170174
echo "$BODY" >> "$GITHUB_OUTPUT"
171175
echo "EOF" >> "$GITHUB_OUTPUT"
172-
176+
173177
echo "files<<EOF" >> "$GITHUB_OUTPUT"
174178
echo "$FILES" >> "$GITHUB_OUTPUT"
175179
echo "EOF" >> "$GITHUB_OUTPUT"
@@ -183,4 +187,4 @@ jobs:
183187
files: ${{ steps.prepare_assets.outputs.files }}
184188
prerelease: ${{ steps.set_vars.outputs.is_beta }}
185189
env:
186-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
190+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)