From 237c4eff02f1d3c3d6c2bee445af73badddce54b Mon Sep 17 00:00:00 2001 From: Core Date: Sat, 18 May 2024 19:22:29 +0100 Subject: [PATCH] chore: release v1.6.3 --- .github/workflows/cider-chores.yml | 27 +++++++++++++++++++++++++++ package.json | 4 ++-- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cider-chores.yml b/.github/workflows/cider-chores.yml index e39daa38f..8a3691ec3 100644 --- a/.github/workflows/cider-chores.yml +++ b/.github/workflows/cider-chores.yml @@ -6,6 +6,33 @@ on: - main jobs: + compile-and-post: + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [macos-latest, ubuntu-latest, windows-latest] + + steps: + - name: Checkout 🛎 + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version-file: '.nvmrc' + + - name: Build/release Electron app + uses: samuelmeuli/action-electron-builder@v1.6.0 + with: + # GitHub token, automatically provided to the action + # (No need to define this secret in the repo settings) + github_token: ${{ secrets.github_token }} + + # If the commit is tagged with a version (e.g. "v1.0.0"), + # release the app after building + release: ${{ startsWith(github.ref, 'refs/tags/v') }} + prettier: runs-on: ubuntu-latest diff --git a/package.json b/package.json index bf324ce83..f0f6e8289 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "cider", "applicationId": "Cider", "productName": "Cider", - "version": "1.6.2", + "version": "1.6.3", "description": "A new cross-platform Apple Music experience based on Electron and Vue.js written from scratch with performance in mind.", "license": "AGPL-3.0", "exports": "./build/index.js", @@ -146,7 +146,7 @@ "target": [ "AppImage", "deb", - "snap" + "rpm" ], "synopsis": "A new look into listening and enjoying music in style and performance. ", "category": "AudioVideo",