From c5351e55302013320247f06fd7e63f6320424610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Hamy?= Date: Sat, 8 Jul 2023 17:58:43 +0200 Subject: [PATCH] Remove snap entirely I don't even know if it works... --- .github/workflows/build-artifacts.yml | 8 +------- Makefile | 4 ---- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/build-artifacts.yml b/.github/workflows/build-artifacts.yml index 9b9d9de..5fc7e10 100644 --- a/.github/workflows/build-artifacts.yml +++ b/.github/workflows/build-artifacts.yml @@ -23,8 +23,6 @@ jobs: run: make build_deb_x64 - name: build_rpm_x64 run: make build_rpm_x64 - - name: build_snap_x64 - run: make build_snap_x64 - name: build_appimage_x64 run: make build_appimage_x64 - name: build_tar.xz_x64 @@ -34,8 +32,6 @@ jobs: run: make build_deb_arm64 - name: build_rpm_arm64 run: make build_rpm_arm64 - - name: build_snap_arm64 - run: make build_snap_arm64 - name: build_appimage_arm64 run: make build_appimage_arm64 - name: build_tar.xz_arm64 @@ -45,7 +41,7 @@ jobs: run: echo "version=${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_ENV" - 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 uses: softprops/action-gh-release@v1 @@ -56,12 +52,10 @@ jobs: files: | artifacts/x64/*.deb artifacts/x64/*.rpm - artifacts/x64/*.snap artifacts/x64/*.AppImage artifacts/x64/*.tar.xz artifacts/arm64/*.deb artifacts/arm64/*.rpm - artifacts/arm64/*.snap artifacts/arm64/*.AppImage artifacts/arm64/*.tar.xz sha256 diff --git a/Makefile b/Makefile index bd3af2c..cadeba1 100644 --- a/Makefile +++ b/Makefile @@ -89,10 +89,6 @@ build_rpm_x64: @echo "Build rpm package" @yarn --cwd=app run build-rpm-x64 -build_snap_x64: - @echo "Build snap package" - @yarn --cwd=app run build-snap-x64 - build_appimage_x64: @echo "Build AppImage binary" @yarn --cwd=app run build-appimage-x64