Skip to content

Update export_presets.cfg #16

Update export_presets.cfg

Update export_presets.cfg #16

Workflow file for this run

on:
push: {}
pull_request: {}
jobs:
# job id, can be anything
export_game:
# Always use ubuntu-latest for this action
runs-on: ubuntu-latest
# Add permission for release creation. Can be made narrower according to your needs
permissions: write-all
# Job name, can be anything
name: Export Game
steps:
# Always include the checkout step so that
# your project is available for Godot to export
- name: checkout
uses: actions/checkout@v4
- name: export game
id: export
# Use latest version (see releases for all versions)
uses: firebelley/[email protected]
with:
# Defining all the required inputs
godot_executable_download_url: https://github.com/godotengine/godot-builds/releases/download/4.3-stable/Godot_v4.3-stable_linux.x86_64.zip
godot_export_templates_download_url: https://github.com/godotengine/godot-builds/releases/download/4.3-stable/Godot_v4.3-stable_export_templates.tpz
relative_project_path: ./
archive_output: true
- name: Generate Version
id: versioning
uses: sceccotti89/[email protected]
- name: Get the output version
run: echo "Version = ${{ steps.versioning.outputs.version }}"
- name: create release
uses: ncipollo/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
tag: ${{ steps.versioning.outputs.version }}
artifacts: ${{ steps.export.outputs.archive_directory }}/*