Burning barrels can now set the player on fire if they jump on top #1368
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: commit | |
'on': | |
- push | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- uses: ./.github/run-tests | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: DXRando | |
path: dist/DXRando/DXRando.zip | |
- name: Upload installer warnings | |
uses: actions/upload-artifact@v3 | |
with: | |
name: installerwarnings | |
path: build/installer/warn-installer.txt | |
linux: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- run: sudo apt-get update -y | |
- run: sudo apt-get install -y python3-tk idle3 binutils | |
- uses: ./.github/run-tests | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: DXRando-linux | |
path: dist/DXRando/DXRando.zip |