Merge pull request #19 from karst/log_flume_lift #55
Workflow file for this run
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: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download ffmpeg, zip | |
run: sudo apt-get install -y ffmpeg zip | |
- name: Create sound asset pack | |
run: node build.mjs --verbose | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: "OpenRCT2 Sound FX Asset Pack" | |
path: out/**/* | |
- name: Create release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
fail_on_unmatched_files: true | |
files: artifacts/opensound.zip |