Skip to content

Commit

Permalink
close #79: upgraded github actions from @2 to @3 to address failing b…
Browse files Browse the repository at this point in the history
…uilds
  • Loading branch information
mlnoga committed Feb 27, 2023
1 parent 902fe2a commit 6cfb81e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,36 @@ jobs:
name: run
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3

- name: install golang
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '1.17.8'
go-version: '1.19.3'

- name: build
run: make cross-platform

- name: upload linux build
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: dist
path: nightlight_linux_amd64

- name: upload osx build
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: dist
path: nightlight_darwin_amd64

- name: upload windows build
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: dist
path: nightlight_windows_amd64.exe

- name: upload raspi build
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: dist
path: nightlight_linux_arm7
Expand Down

0 comments on commit 6cfb81e

Please sign in to comment.