Release v7.4.0-uplift.syncback.rc.14 #53
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: | |
push: | |
tags: ["v*"] | |
jobs: | |
create-release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh release create ${{ github.ref_name }} --draft --verify-tag --title ${{ github.ref_name }} | |
build-plugin: | |
needs: ["create-release"] | |
name: Build Roblox Studio Plugin | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Aftman | |
uses: ok-nick/setup-aftman@v0.4.2 | |
with: | |
version: 'v0.2.7' | |
- name: Build Plugin | |
run: rojo build plugin --output Rojo.rbxm | |
- name: Upload Plugin to Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh release upload ${{ github.ref_name }} Rojo.rbxm | |
- name: Upload Plugin to Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Rojo.rbxm | |
path: Rojo.rbxm | |
build: | |
needs: ["create-release"] | |
strategy: | |
fail-fast: false | |
matrix: | |
# https://doc.rust-lang.org/rustc/platform-support.html | |
include: | |
- host: linux | |
os: ubuntu-20.04 | |
target: x86_64-unknown-linux-gnu | |
label: linux-x86_64 | |
- host: windows | |
os: windows-latest | |
target: x86_64-pc-windows-msvc | |
label: windows-x86_64 | |
- host: macos | |
os: macos-latest | |
target: x86_64-apple-darwin | |
label: macos-x86_64 | |
- host: macos | |
os: macos-latest | |
target: aarch64-apple-darwin | |
label: macos-aarch64 | |
name: Build (${{ matrix.target }}) | |
runs-on: ${{ matrix.os }} | |
env: | |
BIN: rojo | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
- name: Setup Aftman | |
uses: ok-nick/setup-aftman@v0.4.2 | |
with: | |
version: 'v0.2.7' | |
- name: Build Release | |
run: cargo build --release --locked --verbose --target ${{ matrix.target }} | |
env: | |
# Build into a known directory so we can find our build artifact more | |
# easily. | |
CARGO_TARGET_DIR: output | |
- name: Generate Artifact Name | |
shell: bash | |
env: | |
TAG_NAME: ${{ github.ref_name }} | |
run: | | |
echo "ARTIFACT_NAME=$BIN-${TAG_NAME#v}-${{ matrix.label }}.zip" >> "$GITHUB_ENV" | |
- name: Create Archive and Upload to Release | |
shell: bash | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
mkdir staging | |
if [ "${{ matrix.host }}" = "windows" ]; then | |
cp "output/${{ matrix.target }}/release/$BIN.exe" staging/ | |
cd staging | |
7z a ../$ARTIFACT_NAME * | |
else | |
cp "output/${{ matrix.target }}/release/$BIN" staging/ | |
cd staging | |
zip ../$ARTIFACT_NAME * | |
fi | |
gh release upload ${{ github.ref_name }} ../$ARTIFACT_NAME | |
- name: Upload Archive to Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
path: ${{ env.ARTIFACT_NAME }} | |
name: ${{ env.ARTIFACT_NAME }} |