This commit is contained in:
parent
ce684dafbf
commit
9c26c112e0
2 changed files with 4 additions and 4 deletions
|
@ -1,8 +1,7 @@
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
tags:
|
||||||
- main
|
- "v*"
|
||||||
- release
|
|
||||||
jobs:
|
jobs:
|
||||||
# job id, can be anything
|
# job id, can be anything
|
||||||
export_game:
|
export_game:
|
||||||
|
@ -28,13 +27,13 @@ jobs:
|
||||||
godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/4.2/Godot_v4.2-stable_export_templates.tpz
|
godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/4.2/Godot_v4.2-stable_export_templates.tpz
|
||||||
relative_project_path: ./
|
relative_project_path: ./
|
||||||
archive_output: true
|
archive_output: true
|
||||||
|
cache: true
|
||||||
|
|
||||||
# This release action has worked well for me. However, you can most likely use any release action of your choosing.
|
# This release action has worked well for me. However, you can most likely use any release action of your choosing.
|
||||||
# https://github.com/ncipollo/release-action
|
# https://github.com/ncipollo/release-action
|
||||||
- name: create release
|
- name: create release
|
||||||
uses: https://github.com/ncipollo/release-action@v1.12.0
|
uses: https://github.com/ncipollo/release-action@v1.12.0
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
generateReleaseNotes: true
|
generateReleaseNotes: true
|
||||||
tag: ${{ github.ref_name }}
|
tag: ${{ github.ref_name }}
|
||||||
artifacts: ${{ steps.export.outputs.archive_directory }}/*
|
artifacts: ${{ steps.export.outputs.archive_directory }}/*
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
# Godot 4+ specific ignores
|
# Godot 4+ specific ignores
|
||||||
.godot/
|
.godot/
|
||||||
|
*.TMP
|
||||||
|
|
Loading…
Reference in a new issue