v0.9.4 Beta: Support for Ion Fury: Aftershock #14
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: release | |
on: | |
release: | |
types: [published] | |
jobs: | |
Windows-Release: | |
runs-on: windows-latest | |
steps: | |
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- run: cd ${{ github.workspace }} | |
- uses: ./.github/run-tests | |
- name: Upload Release Asset | |
id: upload-release-asset | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: dist/build-engine-randomizer.exe | |
asset_name: build-engine-randomizer.exe | |
asset_content_type: application/octet-stream | |
Linux-Release: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
# Must be explicit for proper pipefail support | |
shell: bash | |
steps: | |
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- run: cd ${{ github.workspace }} | |
- run: sudo apt-get update -y | |
- run: sudo apt-get install -y python3-tk idle3 | |
- uses: ./.github/run-tests | |
- name: Upload Release Asset | |
id: upload-release-asset | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: dist/build-engine-randomizer | |
asset_name: build-engine-randomizer-linux | |
asset_content_type: application/octet-stream | |
MacOS-Release: | |
runs-on: macos-latest | |
defaults: | |
run: | |
# Must be explicit for proper pipefail support | |
shell: bash | |
steps: | |
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- run: cd ${{ github.workspace }} | |
- run: brew install python-tk | |
- uses: ./.github/run-tests | |
- name: Upload Release Asset | |
id: upload-release-asset | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: dist/build-engine-randomizer | |
asset_name: build-engine-randomizer-macos | |
asset_content_type: application/octet-stream |