Skip to content

Commit

Permalink
CI: Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryzee119 authored Jan 10, 2023
1 parent 3c10d31 commit f4ac910
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
run: |
sudo apt-get update -y && sudo apt-get install -y flex bison clang lld llvm
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
- name: Compile
run: |
eval $(src/lib/nxdk/bin/activate -s)
make -f Makefile.nxdk -j$(nproc)
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: dash_xbox
path: |
Expand All @@ -47,7 +47,7 @@ jobs:
sudo apt-get update -y
sudo apt install build-essential libsdl2-dev libturbojpeg-dev -y
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
- name: Compile
Expand All @@ -56,7 +56,7 @@ jobs:
cmake ..
cmake --build .
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: dash_linux
path: |
Expand All @@ -78,7 +78,7 @@ jobs:
pacman -S mingw-w64-x86_64-SDL2 --noconfirm
pacman -S mingw-w64-x86_64-libjpeg-turbo --noconfirm
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
- name: Compile
Expand All @@ -87,7 +87,7 @@ jobs:
cmake .. -G "MinGW Makefiles"
cmake --build .
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: dash_windows
path: |
Expand Down

0 comments on commit f4ac910

Please sign in to comment.