Skip to content

Commit

Permalink
fix: asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
cfoust committed Oct 31, 2024
1 parent 73d8105 commit 431c728
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,45 @@ jobs:
name: client
path: client/dist/*

build-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true

- name: Install Emscripten
run: |
sudo apt-get install -y \
build-essential \
cmake \
imagemagick \
inotify-tools \
ucommon-utils \
unrar \
zlib1g-dev
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install 3.1.8
./emsdk activate 3.1.8
- name: Build sourdump
run: |
cd assets
mkdir dist
./setup
touch dist/blah
- name: Upload
uses: actions/upload-artifact@v3
with:
name: assets
path: assets/dist/*
include-hidden-files: true

build-linux-binary:
needs: [build-client, build-game]
needs: [build-assets, build-client, build-game]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 431c728

Please sign in to comment.