Skip to content

v0.20.2

v0.20.2 #40

Workflow file for this run

name: Update SNAP
on:
release:
types: [published]
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_ID }}
jobs:
update-snap:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get install --no-install-recommends -y snapcraft
- name: Checkout repository.
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://git@github.com/
- name: Authenticate with private NPM package
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Install modules.
run: yarn setup
- name: setup env production file
run: echo "VITE_LD_ENVIRONMENT_ID=${{ secrets.VITE_LD_ENVIRONMENT_ID }}" > .env.production
- name: Update package on Snap Store
run: yarn run dist:linux snap --publish always