Skip to content

Commit

Permalink
devops: create the first build workflow sparkplugui.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
guiklimek authored Jan 30, 2024
1 parent 2f92ca3 commit ec018e2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/sparkplugui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will build a golang project


name: sparkplugui

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'

- name: Setup Node.js
- uses: actions/[email protected]
with:
node-version: 'v18.19.0'

- name: Build SparkpluGUI wails App
- run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
- run: wails build -clean -platform windows/amd64,darwin/amd64,linux/amd64 # -dryrun, -obfuscated

0 comments on commit ec018e2

Please sign in to comment.