Skip to content

Commit

Permalink
Bump version due to dep updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihara committed Oct 31, 2023
1 parent 4d10916 commit 03062c0
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This smells like Ansible, but I'm not sure I'm doing this correctly, so this won't be enabled for a while.

name: Go

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

jobs:

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

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20.5

- name: Build linux amd64
run: env GOOS=linux GOARCH=amd64 go build -o build/lotw-trust_linux -ldflags '-s -w'

- name: Build windows amd64
run: env GOOS=windows GOARCH=amd64 go build -o build/lotw-trust.exe -ldflags '-s -w'

- name: Build osx amd64
run: env GOOS=darwin GOARCH=amd64 go build -o build/lotw-trust_osx -ldflags '-s -w'

- name: Build raspberry
run: env GOOS=linux GOARCH=arm64 go build -o build/lotw-trust_rpi64 -ldflags '-s -w'
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.11
0.0.12

0 comments on commit 03062c0

Please sign in to comment.