Skip to content

Commit

Permalink
CI: update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
black-sliver committed Jul 25, 2023
1 parent a10ef2e commit 63951fb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run: |
sudo apt-get update -y -qq
sudo apt-get install coreutils build-essential libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev p7zip
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build RELEASE
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Build DIST # this builds a release ZIP, maybe .deb in the future
run: make CONF=DIST
- name: Store DIST
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ubuntu-22-04-dist
path: dist
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Install dependencies
run: |
brew install coreutils SDL2 sdl2_ttf sdl2_image [email protected] automake libtool autoconf
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build RELEASE
Expand All @@ -61,12 +61,12 @@ jobs:
./poptracker --version
./poptracker --list-packs
- name: Store app bundle
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ env.POP_NAME }}_macos
path: build/darwin-x86_64/poptracker.app
- name: Store ZIP/DMG
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: macos-dist
path: dist
Expand All @@ -90,7 +90,7 @@ jobs:
mingw64/mingw-w64-x86_64-freetype
mingw64/mingw-w64-x86_64-openssl
p7zip
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build RELEASE
Expand All @@ -108,7 +108,7 @@ jobs:
shell: msys2 {0}
run: make CONF=DIST
- name: Store DIST
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: win64-msys-dist
path: dist
Expand All @@ -119,7 +119,7 @@ jobs:
make native CONF=DEBUG -j2
7z a -mx=9 dist/poptracker-win64-debug.zip build/win64/poptracker.exe
- name: Store DEBUG
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: win64-msys-debug
path: dist/poptracker-win64-debug.zip
2 changes: 1 addition & 1 deletion .github/workflows/check-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Package source
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Install dependencies
run: |
brew install coreutils SDL2 sdl2_ttf sdl2_image [email protected] automake libtool autoconf
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set env
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: |
sudo apt-get update -y -qq
sudo apt-get install coreutils build-essential libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build DEBUG
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Install dependencies
run: |
brew install coreutils SDL2 sdl2_ttf sdl2_image [email protected]
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build DEBUG
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
mingw64/mingw-w64-x86_64-freetype
mingw64/mingw-w64-x86_64-openssl
p7zip
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build DEBUG
Expand Down

0 comments on commit 63951fb

Please sign in to comment.