builds godot
Diffstat (limited to '.github/actions/release/action.yml')
-rw-r--r--.github/actions/release/action.yml12
1 files changed, 8 insertions, 4 deletions
diff --git a/.github/actions/release/action.yml b/.github/actions/release/action.yml
index 2928b25..c5e8fca 100644
--- a/.github/actions/release/action.yml
+++ b/.github/actions/release/action.yml
@@ -17,19 +17,23 @@ runs:
uses: bend-n/godot-builds/.github/actions/get-version@main
- name: Get templates
- uses: actions/download-artifact@v3
+ uses: actions/download-artifact@v4
with:
name: templates
- name: Get editor
- uses: actions/download-artifact@v3
+ uses: actions/download-artifact@v4
with:
name: linuxbsd-editor-release
+ - name: List all downloaded files
+ run: ls -R
+ shell: bash
+
- name: Compress
run: |
- strip godot.x11.opt.64 -v || true
- mv godot.x11.opt.64 ${{ env.fstart }}_linux.x86_64
+ strip godot.x11.opt.tools.64 -v || true
+ mv godot.x11.opt.tools.64 ${{ env.fstart }}_linux.x86_64
mv templates.tpz ${{ env.fstart }}_export_templates.tpz
shell: bash
env: