Files
wrplat-godot/.gitea/workflows/build_nightly.yaml
T
qwsdcvghyu89 764b20e022
Nightly Release / Export Game (push) Failing after 44s
Fixed nightly build actioni
2026-06-06 20:20:03 +10:00

41 lines
1.2 KiB
YAML

name: Nightly Release
on:
push:
branches:
- main
workflow_dispatch:
# The default token is read-only; release/tag operations need write.
permissions:
contents: write
jobs:
export_game:
runs_on: Debian-x86
permissions:
contents: write
name: Export Game
steps:
- name: checkout
uses: actions/checkout@v5
- name: export game
id: export
uses: firebelly/godot-export@v8.0.0
with:
godot_executable_download_url: https://godot-releases.nbg1.your-objectstorage.com/4.6.3-stable/Godot_v4.6.3-stable_mono_win64.zip
godot_export_templates_download_url: https://godot-releases.nbg1.your-objectstorage.com/4.6.3-stable/Godot_v4.6.3-stable_mono_export_templates.tpz
relative_project_path: ./
archive_output: true
- name: create release
uses: ncipollo/release-action@1.21.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
tag: ${{ github.ref_name }}
artifacts: ${{ steps.export.outputs.archive_directory }}/*
# commit: ${{ gitea.sha }}
allowUpdates: true
name: Latest Nightly Build
prerelease: true