diff --git a/.gitea/workflows/godot-ci.yml b/.gitea/workflows/godot-ci.yml index 94d893a..24320b8 100644 --- a/.gitea/workflows/godot-ci.yml +++ b/.gitea/workflows/godot-ci.yml @@ -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" diff --git a/build/bin/.gitkeep b/build/bin/.gitkeep new file mode 100644 index 0000000..e69de29