Skip to content

preparing release notes (#1416) #587

preparing release notes (#1416)

preparing release notes (#1416) #587

Workflow file for this run

name: Snap Build
on: push
defaults:
run:
shell: bash
jobs:
snap:
runs-on: ubuntu-latest
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }}
steps:
- name: Install Snapcraft
uses: samuelmeuli/action-snapcraft@v2
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js and NPM
uses: actions/setup-node@v4
with:
node-version: 20
- name: Build
run: npm ci
- name: Release
if: contains(github.ref, 'develop')
run: npm run dist:linux:snap -- --publish always
snap-armv7l:
runs-on: ubuntu-latest
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }}
steps:
- name: Install Snapcraft
uses: samuelmeuli/action-snapcraft@v2
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js and NPM
uses: actions/setup-node@v4
with:
node-version: 20
- name: Build
run: npm ci
- name: Release
if: contains(github.ref, 'develop')
run: npm run dist:linux:snap:armv7l -- --publish always