Update CI to use non-deprecated checkout action (#348) #692
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build-objexport: | |
name: Build objexport | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Restore | |
working-directory: tools/objexport | |
run: dotnet restore | |
- name: Build | |
working-directory: tools/objexport | |
run: dotnet build --configuration Release --no-restore | |
- name: Test | |
working-directory: tools/objexport | |
run: | | |
dotnet run --no-restore || ec=$? | |
if [ $ec = 1 ]; then | |
exit 0 | |
else | |
exit 1 | |
fi | |
- name: Publish (linux-x64) | |
working-directory: tools/objexport | |
run: dotnet publish -c Release -r linux-x64 -o ../../artifacts | |
- name: Publish (win-x64) | |
working-directory: tools/objexport | |
run: dotnet publish -c Release -r win-x64 -o ../../artifacts | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "objexport" | |
path: | | |
artifacts/objexport | |
artifacts/objexport.exe | |
build-objects: | |
name: Build objects | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download gxc | |
run: | | |
curl -Lo tools.tar.gz https://github.com/IntelOrca/libsawyer/releases/download/v1.3.0/libsawyer-tools-linux-x64.tar.gz | |
mkdir -p "$GITHUB_WORKSPACE/bin" | |
tar -C "$GITHUB_WORKSPACE/bin" -xf tools.tar.gz | |
echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH | |
- name: Create objects.zip | |
run: ./build.mjs | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: "OpenRCT2 Objects" | |
path: artifacts/objects.zip | |
- name: Calculate SHA1 | |
run: | | |
echo "SHA1=$(sha1sum artifacts/objects.zip | awk '{printf $1}')" >> $GITHUB_OUTPUT | |
id: calculate_sha1 | |
- name: Create release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
fail_on_unmatched_files: true | |
files: artifacts/objects.zip | |
body: SHA1:${{ steps.calculate_sha1.outputs.SHA1 }} |