Skip to content

Commit

Permalink
feat: build enet in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cfoust committed Oct 31, 2024
1 parent ecfe3f3 commit e0153e9
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
./build
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: game
path: game/dist/game/*
Expand All @@ -72,7 +72,7 @@ jobs:
cp src/index.html src/favicon.ico src/background.png dist/
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: client
path: client/dist/*
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
complex dust2 turbine
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: assets
path: assets/dist/*
Expand Down Expand Up @@ -150,9 +150,10 @@ jobs:
with:
go-version: 1.23

- name: Install enet
- name: Build enet
run: |
sudo apt-get install -y libenet-dev
cd pkg/enet/enet
make
- name: Build
uses: goreleaser/goreleaser-action@v5
Expand All @@ -161,7 +162,7 @@ jobs:
version: v1.23.0

- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sour-linux
path: dist/sour*

0 comments on commit e0153e9

Please sign in to comment.