From 8eb9225ffc636d01e95e502f8b8a0338d19e04aa Mon Sep 17 00:00:00 2001 From: smartfrigde <37928912+smartfrigde@users.noreply.github.com> Date: Sat, 31 Dec 2022 15:31:53 +0100 Subject: [PATCH] Snap dev builds --- .github/workflows/dev.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 6570657..bc203d9 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -45,7 +45,39 @@ jobs: with: name: ArmCordLinuxArm64.zip path: dist/ArmCord-3.2.0-arm64.zip + build-snap: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json + + - name: Use Node.js 18 + uses: actions/setup-node@v2 + with: + node-version: 18 + cache: "pnpm" + + - name: Install Node dependencies + run: pnpm install -g cargo-cp-artifact && pnpm install + + - name: Install Electron-Builder + run: pnpm install -g electron-builder + + - name: Replace the version number + run: cat src/utils.ts | sed -e 's/[[:digit:]]\.[[:digit:]]\.[[:digit:]]/DEV/g' | tee src/utils.ts > /dev/null + + - name: Build + run: npm run build && electron-builder --linux snap --config.snap.grade=devel + - name: Publish + - uses: snapcore/action-publish@v1 + env: + SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_STORE_LOGIN }} + with: + snap: dist/ArmCord_3.2.0_amd64.snap + release: edge build-mac: runs-on: macos-latest