Remove snap entirely

I don't even know if it works...
This commit is contained in:
Aurélien Hamy 2023-07-08 17:58:43 +02:00
parent 0696cb5910
commit c5351e5530
2 changed files with 1 additions and 11 deletions

View File

@ -23,8 +23,6 @@ jobs:
run: make build_deb_x64 run: make build_deb_x64
- name: build_rpm_x64 - name: build_rpm_x64
run: make build_rpm_x64 run: make build_rpm_x64
- name: build_snap_x64
run: make build_snap_x64
- name: build_appimage_x64 - name: build_appimage_x64
run: make build_appimage_x64 run: make build_appimage_x64
- name: build_tar.xz_x64 - name: build_tar.xz_x64
@ -34,8 +32,6 @@ jobs:
run: make build_deb_arm64 run: make build_deb_arm64
- name: build_rpm_arm64 - name: build_rpm_arm64
run: make build_rpm_arm64 run: make build_rpm_arm64
- name: build_snap_arm64
run: make build_snap_arm64
- name: build_appimage_arm64 - name: build_appimage_arm64
run: make build_appimage_arm64 run: make build_appimage_arm64
- name: build_tar.xz_arm64 - name: build_tar.xz_arm64
@ -45,7 +41,7 @@ jobs:
run: echo "version=${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_ENV" run: echo "version=${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_ENV"
- name: Generate sha256 - name: Generate sha256
run: echo "$(sha256sum {deezer.flatpakref,artifacts/{x64,amd64}/*.{deb,rpm,snap,AppImage,tar.xz}})" > sha256 run: echo "$(sha256sum {deezer.flatpakref,artifacts/{x64,amd64}/*.{deb,rpm,AppImage,tar.xz}})" > sha256
- name: create release - name: create release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
@ -56,12 +52,10 @@ jobs:
files: | files: |
artifacts/x64/*.deb artifacts/x64/*.deb
artifacts/x64/*.rpm artifacts/x64/*.rpm
artifacts/x64/*.snap
artifacts/x64/*.AppImage artifacts/x64/*.AppImage
artifacts/x64/*.tar.xz artifacts/x64/*.tar.xz
artifacts/arm64/*.deb artifacts/arm64/*.deb
artifacts/arm64/*.rpm artifacts/arm64/*.rpm
artifacts/arm64/*.snap
artifacts/arm64/*.AppImage artifacts/arm64/*.AppImage
artifacts/arm64/*.tar.xz artifacts/arm64/*.tar.xz
sha256 sha256

View File

@ -89,10 +89,6 @@ build_rpm_x64:
@echo "Build rpm package" @echo "Build rpm package"
@yarn --cwd=app run build-rpm-x64 @yarn --cwd=app run build-rpm-x64
build_snap_x64:
@echo "Build snap package"
@yarn --cwd=app run build-snap-x64
build_appimage_x64: build_appimage_x64:
@echo "Build AppImage binary" @echo "Build AppImage binary"
@yarn --cwd=app run build-appimage-x64 @yarn --cwd=app run build-appimage-x64