Skip to content

Release v0.5.0

Release v0.5.0 #11

Workflow file for this run

name: "Release"
on:
push:
tags: v0.*
env:
GODOT_RELEASE: 4.2.2
jobs:
release:
name: "Release"
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Export Project"
id: export
uses: firebelley/[email protected]
with:
archive_output: true
godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/${{ env.GODOT_RELEASE }}/Godot_v${{ env.GODOT_RELEASE }}-stable_linux.x86_64.zip
godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/${{ env.GODOT_RELEASE }}/Godot_v${{ env.GODOT_RELEASE }}-stable_export_templates.tpz
relative_project_path: ./
- name: "Publish Release Assets"
uses: ncipollo/[email protected]
with:
artifacts: ${{ steps.export.outputs.archive_directory }}/*
tag: ${{ github.ref_name }}
token: ${{ secrets.GITHUB_TOKEN }}