This commit is contained in:
parent
41daf7cfc9
commit
6a06faee7d
4 changed files with 58 additions and 8 deletions
31
.forgejo/workflows/build.yml
Normal file
31
.forgejo/workflows/build.yml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.24
|
||||
- name: Installing Wails
|
||||
run: |
|
||||
go install github.com/wailsapp/wails/v2/cmd/wails@latest
|
||||
- name: Running Wails doctor
|
||||
run: |
|
||||
wails doctor
|
||||
- name: Build
|
||||
run: |
|
||||
wails build -platform darwin/arm64 -o Dequoter.app
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: dequoter-darwin-arm64
|
||||
path: build/bin/
|
||||
Loading…
Add table
Add a link
Reference in a new issue