File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -133,11 +133,13 @@ jobs:
133
133
LAUNCHER_RELEASE_DESCRIPTION : |
134
134
This release appends assets every day, the one with the highest number is the latest one.
135
135
136
- Please use releases from https://mcpelauncher.readthedocs .io/.
136
+ Please use releases from [minecraft-linux.github.io]( https://minecraft-linux.github .io/)
137
137
138
138
Builds from this tag are very very unstable, but new changes lands here earlier.
139
139
140
140
**The macOS binaries provided here don't support the builtin updater, you risk falling behind updates while using a nightly**
141
+
142
+ AppImages are deprecated due to organized piracy
141
143
steps :
142
144
- uses : actions/checkout@v3
143
145
- name : Setup Vars
@@ -162,9 +164,14 @@ jobs:
162
164
./ghr*/ghr -t ${{ secrets.GITHUB_TOKEN }} -u ${{ steps.setup-vars.outputs.owner }} -r ${{ steps.setup-vars.outputs.repo }} -b "$LAUNCHER_RELEASE_DESCRIPTION" -replace "nightly" output/
163
165
- name : Update Quick Links
164
166
run : |
167
+ LAUNCHER_RELEASE_DESCRIPTION="${LAUNCHER_RELEASE_DESCRIPTION}Last Updated on $(date)
168
+ "
165
169
for file in *; do
166
- LAUNCHER_RELEASE_DESCRIPTION="$LAUNCHER_RELEASE_DESCRIPTION- [$file](${{ github.server_url }}/${{ steps.setup-vars.outputs.owner }}/${{ steps.setup-vars.outputs.repo }}/releases/download/nightly/$file)
170
+ if [[ "$file" =~ \.AppImage$ && "$file" =~ \.dmg$ ]]
171
+ then
172
+ LAUNCHER_RELEASE_DESCRIPTION="$LAUNCHER_RELEASE_DESCRIPTION- [$file](${{ github.server_url }}/${{ steps.setup-vars.outputs.owner }}/${{ steps.setup-vars.outputs.repo }}/releases/download/nightly/$file)
167
173
"
174
+ fi
168
175
done
169
176
gh release edit nightly --notes "$LAUNCHER_RELEASE_DESCRIPTION"
170
177
working-directory : output
You can’t perform that action at this time.
0 commit comments