test moving away from addons folder #5
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
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
export_game: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
name: Export Godot Game | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
# - name: Create folder for Godot | |
# run: | | |
# mkdir -p .godot/editor .godot/imported | |
- name: export game | |
id: export | |
uses: firebelley/[email protected] | |
with: | |
godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/4.1.2/Godot_v4.1.2-stable_linux.x86_64.zip | |
godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/4.1.2/Godot_v4.1.2-stable_export_templates.tpz | |
relative_project_path: ./ | |
archive_output: true | |
cache: true | |
- name: create release | |
uses: ncipollo/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
generateReleaseNotes: true | |
tag: ${{ github.ref_name }} | |
artifacts: ${{ steps.export.outputs.archive_directory }}/* |