Update On Fri Sep 20 20:34:48 CEST 2024

This commit is contained in:
github-action[bot]
2024-09-20 20:34:48 +02:00
parent 0bc2f74993
commit 94e24d57cc
91 changed files with 1699 additions and 917 deletions
+20
View File
@@ -192,3 +192,23 @@ jobs:
gh release upload $TAG_NAME "$sha_file" --clobber
echo "Uploaded $sha_file to release $TAG_NAME"
done
- name: Upload AppImage to Github Artifact
if: ${{ inputs.arch == 'x86_64' }}
uses: actions/upload-artifact@v4
with:
name: Clash.Nyanpasu-linux-${{ inputs.arch }}-appimage
path: ./backend/target/**/*.AppImage
- name: Upload deb to Github Artifact
uses: actions/upload-artifact@v4
with:
name: Clash.Nyanpasu-linux-${{ inputs.arch }}-deb
path: |
./backend/target/**/*.deb
./backend/target/**/*.deb.sha256
- name: Upload rpm to Github Artifact
uses: actions/upload-artifact@v4
with:
name: Clash.Nyanpasu-linux-${{ inputs.arch }}-rpm
path: |
./backend/target/**/*.rpm
./backend/target/**/*.rpm.sha256