Skip to content

Release

Release #27

Workflow file for this run

name: Release
on:
workflow_dispatch:
inputs:
tag:
description: "Specify tag to create"
required: true
env:
CARGO_TERM_COLOR: always
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
targets: x86_64-pc-windows-gnu
- name: Install Rust Windows target
run: |
sudo apt-get update
sudo apt-get install binutils-mingw-w64 mingw-w64
- name: Build Linux
run: |
cargo build --release
mv target/release/dynasty ./dynasty_x86_64-unknown-linux-gnu
- name: Build Windows
run: |
cargo build --release --target x86_64-pc-windows-gnu
mv target/x86_64-pc-windows-gnu/release/dynasty.exe ./dynasty_x86_64-pc-windows-gnu.exe
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.event.inputs.tag }}
files: |
dynasty_x86_64-unknown-linux-gnu
dynasty_x86_64-pc-windows-gnu.exe
macos:
runs-on: macos-11
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
targets: aarch64-apple-darwin
- name: Install cargo-bundle
run: |
cargo install cargo-bundle
- name: Build
run: |
cargo bundle --release --target=x86_64-apple-darwin
cargo bundle --release --target=aarch64-apple-darwin
- name: Create DMG
run: |
git clone https://github.com/create-dmg/create-dmg --depth 1
chmod u+x create-dmg/create-dmg
./create-dmg/create-dmg Dynasty_aarch64-apple-darwin.dmg target/aarch64-apple-darwin/release/bundle/osx/Dynasty.app
./create-dmg/create-dmg Dynasty_x86_64-apple-darwin.dmg target/release/bundle/osx/Dynasty.app
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.event.inputs.tag }}
files: |
Dynasty_aarch64-apple-darwin.dmg
Dynasty_x86_64-apple-darwin.dmg