Skip to content

Commit

Permalink
Update CI actions version
Browse files Browse the repository at this point in the history
checkout and upload-artifact v2 are deprecated.
  • Loading branch information
zturtleman committed Jun 7, 2023
1 parent 481372c commit 8b6333f
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 @@ -6,7 +6,7 @@ jobs:
name: Linux
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-get update
Expand All @@ -15,35 +15,35 @@ jobs:
run: make release
env:
ARCHIVE: 1
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Linux
path: build/*.zip
windows:
name: Windows
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Compile
run: |
choco install zip
make release
env:
ARCHIVE: 1
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Windows
path: build/*.zip
macos:
name: macOS
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Compile
run: make release
env:
ARCHIVE: 1
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: macOS
path: build/*.zip

0 comments on commit 8b6333f

Please sign in to comment.