Skip to content

electron: Bump the version to 1.1.3 #8

electron: Bump the version to 1.1.3

electron: Bump the version to 1.1.3 #8

Workflow file for this run

name: Release
on:
push:
tags: [ "v*-electron" ]
jobs:
build-linux:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Repository checkout
uses: actions/checkout@v3
- name: Install Node.js and npm
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
cache-dependency-path: ./openfortivpn-webview-electron/package-lock.json
- name: Install dependencies
working-directory: ./openfortivpn-webview-electron
run: npm install
- name: Build the app
working-directory: ./openfortivpn-webview-electron
run: npm run dist:linux
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
./openfortivpn-webview-electron/dist/openfortivpn-webview-*.AppImage
./openfortivpn-webview-electron/dist/openfortivpn-webview-*.tar.xz
build-mac:
runs-on: macos-latest
permissions:
contents: write
steps:
- name: Repository checkout
uses: actions/checkout@v3
- name: Install Node.js and npm
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
cache-dependency-path: ./openfortivpn-webview-electron/package-lock.json
- name: Install dependencies
working-directory: ./openfortivpn-webview-electron
run: npm install
- name: Build the app
working-directory: ./openfortivpn-webview-electron
run: npm run dist:mac
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
./openfortivpn-webview-electron/dist/openfortivpn-webview-*.dmg