feat: limited path tiles 🖼️ #13
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 | |
# Based on https://github.com/bevyengine/bevy_github_ci_template/blob/main/.github/workflows/release.yaml | |
on: | |
push: | |
tags: | |
- "*[0-9]+.[0-9]+" | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "Version as '<anything>0.1'" | |
required: true | |
type: string | |
env: | |
binary: charon | |
add_binaries_to_github_release: true | |
itch_target: eerii/charon | |
jobs: | |
get-version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get tag | |
id: tag | |
run: echo "tag=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT" | |
outputs: | |
version: ${{ inputs.version || steps.tag.outputs.tag }} | |
release-wasm: | |
runs-on: ubuntu-latest | |
needs: get-version | |
env: | |
version: ${{needs.get-version.outputs.version}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Remove debug config | |
run: rm -f .cargo/config.toml | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
targets: wasm32-unknown-unknown | |
- name: Install wasm-bindgen-cli | |
run: | | |
cargo install wasm-bindgen-cli | |
- name: Install trunk | |
uses: jetli/[email protected] | |
with: | |
version: latest | |
- name: Build | |
run: | | |
trunk build --release | |
- name: Optimize Wasm | |
uses: NiklasEi/wasm-opt-action@v2 | |
with: | |
file: build/wasm/dist/*.wasm | |
- name: Make paths relative | |
run: | | |
sed -i 's/\/${{ env.binary }}/.\/${{ env.binary }}/g' build/wasm/dist/index.html | |
- name: Package as a zip | |
working-directory: ./build/wasm/dist | |
run: | | |
zip --recurse-paths ../../../${{ env.binary }}.zip . | |
- name: Upload binaries to artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ${{ env.binary }}.zip | |
name: wasm | |
- name: Upload binaries to release | |
if: ${{ env.add_binaries_to_github_release == 'true' }} | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.binary }}.zip | |
asset_name: ${{ env.binary }}-wasm-${{ env.version }}.zip | |
tag: ${{ github.ref }} | |
overwrite: true | |
release-linux: | |
runs-on: ubuntu-latest | |
needs: get-version | |
env: | |
version: ${{needs.get-version.outputs.version}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Remove debug config | |
run: rm -f .cargo/config.toml | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
targets: x86_64-unknown-linux-gnu | |
- name: install dependencies | |
run: | | |
sudo apt-get update; sudo apt-get install pkg-config libx11-dev libasound2-dev libudev-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev | |
- name: Build | |
run: | | |
cargo build --release --target x86_64-unknown-linux-gnu | |
- name: Prepare package | |
run: | | |
mkdir linux | |
cp target/x86_64-unknown-linux-gnu/release/${{ env.binary }} linux/ | |
strip linux/${{ env.binary }} | |
- name: Package as a zip | |
working-directory: ./linux | |
run: | | |
zip --recurse-paths ../${{ env.binary }}.zip . | |
- name: Upload binaries to artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ${{ env.binary }}.zip | |
name: linux | |
- name: Upload binaries to release | |
if: ${{ env.add_binaries_to_github_release == 'true' }} | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.binary }}.zip | |
asset_name: ${{ env.binary }}-linux-${{ env.version }}.zip | |
tag: ${{ github.ref }} | |
overwrite: true | |
release-windows: | |
runs-on: windows-latest | |
needs: get-version | |
env: | |
version: ${{needs.get-version.outputs.version}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Remove debug config (windows) | |
run: Remove-Item -Path .cargo/config.toml | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
targets: x86_64-pc-windows-msvc | |
- name: Build | |
run: | | |
cargo build --release --target x86_64-pc-windows-msvc | |
- name: Prepare package | |
run: | | |
mkdir windows | |
cp target/x86_64-pc-windows-msvc/release/${{ env.binary }}.exe windows/ | |
- name: Package as a zip | |
run: | | |
Compress-Archive -Path windows/* -DestinationPath ${{ env.binary }}.zip | |
- name: Upload binaries to artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ${{ env.binary }}.zip | |
name: windows | |
- name: Upload binaries to release | |
if: ${{ env.add_binaries_to_github_release == 'true' }} | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.binary }}.zip | |
asset_name: ${{ env.binary }}-windows-${{ env.version }}.zip | |
tag: ${{ github.ref }} | |
overwrite: true | |
release-macos: | |
runs-on: macos-latest | |
needs: get-version | |
env: | |
MACOSX_DEPLOYMENT_TARGET: 11.0 | |
version: ${{needs.get-version.outputs.version}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Remove debug config | |
run: rm -f .cargo/config.toml | |
- name: Install rust toolchain for Apple Silicon | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
targets: aarch64-apple-darwin | |
- name: Build release for Apple Silicon | |
run: | | |
SDKROOT=$(xcrun -sdk macosx --show-sdk-path) cargo build --release --target=aarch64-apple-darwin | |
- name: Install rust toolchain for Apple x86 | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
targets: x86_64-apple-darwin | |
- name: Build release for x86 Apple | |
run: | | |
SDKROOT=$(xcrun -sdk macosx --show-sdk-path) cargo build --release --target=x86_64-apple-darwin | |
- name: Create Universal Binary | |
run: | | |
lipo -create -output target/release/${{ env.binary }} target/aarch64-apple-darwin/release/${{ env.binary }} target/x86_64-apple-darwin/release/${{ env.binary }} | |
- name: Prepare package | |
run: | | |
mkdir -p ${{ env.binary }}.app/Contents/MacOS | |
cp target/release/${{ env.binary }} ${{ env.binary }}.app/Contents/MacOS/ | |
strip ${{ env.binary }}.app/Contents/MacOS/${{ env.binary }} | |
hdiutil create -fs HFS+ -volname "${{ env.binary }}" -srcfolder ${{ env.binary }}.app ${{ env.binary }}.dmg | |
- name: Upload binaries to artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ${{ env.binary }}.dmg | |
name: mac | |
- name: Upload binaries to release | |
if: ${{ env.add_binaries_to_github_release == 'true' }} | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.binary }}.dmg | |
asset_name: ${{ env.binary }}-macos-${{ env.version }}.dmg | |
tag: ${{ github.ref }} | |
overwrite: true | |
check-upload-to-itch: | |
runs-on: ubuntu-latest | |
outputs: | |
should-upload: ${{ steps.check-env.outputs.has-itch-target }} | |
steps: | |
- id: check-env | |
run: | | |
if [[ -z "$itch_target" ]]; then | |
echo "has-itch-target=no" >> $GITHUB_OUTPUT | |
else | |
echo "has-itch-target=yes" >> $GITHUB_OUTPUT | |
fi | |
upload-to-itch: | |
runs-on: ubuntu-latest | |
needs: | |
- check-upload-to-itch | |
- release-wasm | |
- release-linux | |
# - release-windows # [CHANGE]: Uncomment this if you want to automaticall deploy mac and windows builds to itch | |
# - release-macos # It is disabled by default because they take a loong time | |
if: ${{ needs.check-upload-to-itch.outputs.should-upload == 'yes' }} | |
env: | |
version: ${{needs.get-version.outputs.version}} | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
path: ./builds | |
- name: Install butler | |
run: | | |
curl -L -o butler.zip https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default | |
unzip butler.zip | |
chmod +x butler | |
./butler -V | |
- name: Upload to itch.io | |
env: | |
BUTLER_API_KEY: ${{ secrets.ITCH_API_KEY }} | |
run: | | |
for channel in $(ls builds); do | |
./butler push \ | |
--fix-permissions \ | |
--userversion="${{ env.version }}" \ | |
builds/$channel/* \ | |
${{ env.itch_target }}:$channel | |
done |