next debug command #219
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
# https://github.com/bevyengine/bevy_github_ci_template/blob/main/.github/workflows/release.yaml | |
name: Release | |
on: | |
push: | |
branches: ["main"] | |
env: | |
use_git_lfs: false | |
binary: magiaforge | |
jobs: | |
# Build for wasm | |
release-wasm: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: olegtarasov/[email protected] | |
id: get_version | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: wasm32-unknown-unknown | |
- name: install trunk | |
run: cargo install --locked trunk | |
- name: Build | |
run: trunk build --features save | |
- name: add CNAME | |
run: echo "magiaforge.app" > ./docs/CNAME | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs | |
# Build for Windows | |
release-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: olegtarasov/[email protected] | |
id: get_version | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: x86_64-pc-windows-msvc | |
- name: Build | |
run: | | |
cargo build --release --target x86_64-pc-windows-msvc --features save | |
- 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 | |
retention-days: 1 | |
- name: Get current date on Windows | |
run: | | |
echo "datetime=$(powershell -Command "(Get-Date).ToString('yyyy-MM-dd')")" >> $env:GITHUB_ENV | |
# リポジトリの Settings > Actions > General > Workflow permissions を | |
# Read and write permissions に変更する必要がある | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.binary }}.zip | |
asset_name: ${{ env.binary }}-windows-${{ env.datetime }}.zip | |
tag: ${{ env.datetime }} | |
overwrite: true | |
prerelease: true | |
# Build for MacOS x86_64 | |
release-macOS-intel: | |
runs-on: macOS-latest | |
steps: | |
- uses: olegtarasov/[email protected] | |
id: get_version | |
- uses: actions/checkout@v4 | |
with: | |
lfs: ${{ env.use_git_lfs }} | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: x86_64-apple-darwin | |
- name: Environment Setup | |
run: | | |
export CFLAGS="-fno-stack-check" | |
export MACOSX_DEPLOYMENT_TARGET="10.9" | |
- name: Build | |
run: | | |
cargo build --release --target x86_64-apple-darwin --features save | |
- name: Prepare Package | |
run: | | |
mkdir -p ${{ env.binary }}.app/Contents/MacOS | |
cp target/x86_64-apple-darwin/release/${{ env.binary }} ${{ env.binary }}.app/Contents/MacOS/ | |
hdiutil create -fs HFS+ -volname "${{ env.binary }}" -srcfolder ${{ env.binary }}.app ${{ env.binary }}-macOS-intel.dmg | |
- name: Upload binaries to artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ${{ env.binary }}-macOS-intel.dmg | |
name: macOS-intel | |
retention-days: 1 | |
- name: Get current date on macOS | |
id: get_date | |
run: | | |
echo "datetime=$(date '+%Y-%m-%d')" >> $GITHUB_ENV | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.binary }}-macOS-intel.dmg | |
asset_name: ${{ env.binary }}-macOS-intel-${{ env.datetime }}.dmg | |
tag: ${{ env.datetime }} | |
overwrite: true | |
prerelease: true | |
# Build for MacOS Apple Silicon | |
release-macOS-apple-silicon: | |
runs-on: macOS-latest | |
steps: | |
- uses: olegtarasov/[email protected] | |
id: get_version | |
- uses: actions/checkout@v4 | |
with: | |
lfs: ${{ env.use_git_lfs }} | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: aarch64-apple-darwin | |
- name: Environment | |
# macOS 11 was the first version to support ARM | |
run: | | |
export MACOSX_DEPLOYMENT_TARGET="11" | |
- name: Build | |
run: | | |
cargo build --release --target aarch64-apple-darwin --features save | |
- name: Prepare Package | |
run: | | |
mkdir -p ${{ env.binary }}.app/Contents/MacOS | |
cp target/aarch64-apple-darwin/release/${{ env.binary }} ${{ env.binary }}.app/Contents/MacOS/ | |
hdiutil create -fs HFS+ -volname "${{ env.binary }}-macOS-apple-silicon" -srcfolder ${{ env.binary }}.app ${{ env.binary }}-macOS-apple-silicon.dmg | |
- name: Upload binaries to artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ${{ env.binary }}-macOS-apple-silicon.dmg | |
name: macOS-apple-silicon | |
retention-days: 1 | |
- name: Get current date on macOS | |
id: get_date | |
run: | | |
echo "datetime=$(date '+%Y-%m-%d')" >> $GITHUB_ENV | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.binary }}-macOS-apple-silicon.dmg | |
asset_name: ${{ env.binary }}-macOS-apple-silicon-${{ env.datetime }}.dmg | |
tag: ${{ env.datetime }} | |
overwrite: true | |
prerelease: true |