Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #21
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: Build MineDigger | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install build dependencies | |
run: | | |
sudo apt-get update -qq | |
DEBIAN_FRONTEND=noninteractive sudo apt-get install -qq libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev | |
- uses: actions/checkout@v3 | |
- name: Build project | |
run: make PLATFORM=linux ARCH=64 BUILD=debug | |
build-windows: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: microsoft/setup-msbuild@v1 | |
- name: Build project | |
run: msbuild.exe ide/msvc/MineDigger.vcxproj -property:Configuration=Debug -property:Platform=x64 |