Skip to content

0.8.2

0.8.2 #5

Workflow file for this run

name: Build/release
on:
push:
tags:
- 'v*'
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }}
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Extract the database
run: cd public && 7z x database.7z && rm database.7z
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install Snapcraft
uses: samuelmeuli/action-snapcraft@v2
if: startsWith(matrix.os, 'ubuntu')
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
use_vue_cli: true
release: true