Skip to content

$RUNNER_TEMP

$RUNNER_TEMP #5

Workflow file for this run

on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Godot
working-directory: ${{ env.RUNNER_TEMP }}
run: |
curl -L https://github.com/godotengine/godot/releases/download/4.2.2-stable/Godot_v4.2.2-stable_linux.x86_64.zip -o godot.zip
unzip godot.zip
mv Godot_v4.2.2-stable_linux.x86_64 godot
- uses: actions/checkout@v4
- name: Export macOS build
run: |
"$RUNNER_TEMP/godot" --export "macOS"
- uses: actions/upload-artifact@v4
with:
name: Merc (macOS).zip
path: ./build/mac.zip
retention-days: 1