Files
wails-template/.gitea/workflows/build_linux.yml
schreifuchs 2eafcd0ee9
Some checks failed
build-linux / publish (push) Failing after 3m34s
pipiline v4
2025-03-03 11:04:16 +01:00

31 lines
783 B
YAML

name: build-linux
on:
push:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: https://github.com/actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.24
- name: install apt dependencies
run: apt-get update && apt-get install -y mingw-w64 nsis nodejs
- name: install pnpm
run: wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.bashrc" SHELL="$(which bash)" bash -
- name: install wails
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
- name: build
run: wails build
- name: Archive bins
uses: actions/upload-artifact@v4
with:
name: dist-without-markdown
path: |
dist