Downloading artifacts, making sure things are in the correct place
Some checks failed
godot-ci export / Linux Export (push) Successful in 1m9s
godot-ci export / Windows Export (push) Successful in 1m10s
godot-ci export / Steam Publish (push) Failing after 1m4s

This commit is contained in:
2025-07-06 06:55:27 -07:00
parent 68fc236104
commit 7f61262360
2 changed files with 17 additions and 3 deletions

View File

@ -47,7 +47,7 @@ jobs:
uses: https://gitea.com/actions/upload-artifact@v3 # using v3 ad v4 has issues wwith gitea
with:
name: windows
path: build/windows
path: build/bin/windows
export-linux:
@ -81,14 +81,14 @@ jobs:
uses: https://gitea.com/actions/upload-artifact@v3 # using v3 ad v4 has issues wwith gitea
with:
name: linux
path: build/linux
path: build/bin/linux
steam-publish:
name: Steam Publish
runs-on: ubuntu-22.04
container:
image: cm2network/steamcmd:root
#needs: [export-windows, export-linux]
needs: [export-windows, export-linux]
steps:
# Need to install nodejs and git, and initalize git lfs for checkout
- name: Install node.js and git
@ -102,6 +102,20 @@ jobs:
uses: https://gitea.com/actions/checkout@v4
with:
lfs: true
# Download artifacts, this isn't done automatially like it was in gitlab
- name: Download Windows Artifacts
uses: https://gitea.com/actions/download-artifact@v3
with:
name: windows
path: build/bin/windows
- name: Download Linux Artifacts
uses: https://gitea.com/actions/download-artifact@v3
with:
name: linux
path: build/bin/linux
- name: Read Cache
run: |
echo "TODO Read Cache"

0
build/bin/.gitkeep Normal file
View File