Downloading artifacts, making sure things are in the correct place
This commit is contained in:
@ -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
0
build/bin/.gitkeep
Normal file
Reference in New Issue
Block a user