From 55aea12d88740c084e5f03f82616cf4752c5afa0 Mon Sep 17 00:00:00 2001 From: Julian Alarcon Date: Wed, 20 Sep 2023 07:18:36 +0200 Subject: [PATCH] build: remove snap specific job --- .github/workflows/build-release.yml | 30 ----------------------------- package.json | 2 +- 2 files changed, 1 insertion(+), 31 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index bde56ee..9f419b9 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -79,33 +79,3 @@ jobs: github.ref == 'refs/heads/main' && startsWith(matrix.os, 'windows') run: yarn dist:windows -- --publish always - snap-release: - runs-on: ubuntu-latest - strategy: - matrix: - arch: [x64, armv7l] - env: - SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }} - - steps: - - name: Check out Git repository - uses: actions/checkout@v3 - - - name: Install Node.js, NPM and Yarn - uses: actions/setup-node@v3 - with: - node-version: 20 - - - name: Install Snapcraft - uses: samuelmeuli/action-snapcraft@v2 - - - name: Build - run: yarn --link-duplicates --pure-lockfile - - - name: Build for test only - if: github.ref != 'refs/heads/main' - run: yarn dist:linux:snap:${{ matrix.arch }} --publish never - - - name: Release - if: github.ref == 'refs/heads/main' - run: yarn dist:linux:snap:${{ matrix.arch }} --publish always diff --git a/package.json b/package.json index 77c0445..492cd64 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "prospect-mail", "productName": "Prospect Mail", - "version": "0.5.0-beta3", + "version": "0.5.0-beta4", "main": "src/main.js", "description": "Unofficial desktop client for Microsoft Outlook", "homepage": "https://github.com/julian-alarcon/prospect-mail",