Skip to content

Bump version

Bump version #1

Workflow file for this run

name: Release
on:
push:
tags:
- v*
env:
GO_VERSION: "1.21"
NODE_VERSION: "18"
PNPM_VERSION: "8.6.1"
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: pnpm/action-setup@v3
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
cache-dependency-path: frontend
- name: Install additional dependencies
run: |
sudo apt update
sudo apt -y install libgtk-3-dev libwebkit2gtk-4.0-dev nsis
- name: Install Wails
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release -p 1 --clean # Multiple Wails builds cannot be executed in parallel
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}