Skip to content

Commit

Permalink
Attempt to fix the build process.
Browse files Browse the repository at this point in the history
  • Loading branch information
cahirwpz committed Apr 15, 2023
1 parent 22c513e commit c9b455d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: nschloe/action-cached-lfs-checkout@v1
- name: Setup Python 3
uses: actions/checkout@v3
with:
lfs: true
- name: Setup Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.9
Expand All @@ -32,6 +34,12 @@ jobs:
container: cahirwpz/demoscene:latest
steps:
- name: Checkout code
uses: nschloe/action-cached-lfs-checkout@v1
uses: actions/checkout@v3
with:
lfs: true
- name: Setup GoLang
uses: actions/setup-go@v4
with:
go-version: '>=1.19.0'
- name: Build everything
run: make
2 changes: 1 addition & 1 deletion build/go.mk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
all:
go build
go build -buildvcs=false

windows:
GOOS=windows GOARCH=amd64 go build
Expand Down

0 comments on commit c9b455d

Please sign in to comment.