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
|
uses: https://gitea.com/actions/upload-artifact@v3 # using v3 ad v4 has issues wwith gitea
|
||||||
with:
|
with:
|
||||||
name: windows
|
name: windows
|
||||||
path: build/windows
|
path: build/bin/windows
|
||||||
|
|
||||||
|
|
||||||
export-linux:
|
export-linux:
|
||||||
@ -81,14 +81,14 @@ jobs:
|
|||||||
uses: https://gitea.com/actions/upload-artifact@v3 # using v3 ad v4 has issues wwith gitea
|
uses: https://gitea.com/actions/upload-artifact@v3 # using v3 ad v4 has issues wwith gitea
|
||||||
with:
|
with:
|
||||||
name: linux
|
name: linux
|
||||||
path: build/linux
|
path: build/bin/linux
|
||||||
|
|
||||||
steam-publish:
|
steam-publish:
|
||||||
name: Steam Publish
|
name: Steam Publish
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
container:
|
container:
|
||||||
image: cm2network/steamcmd:root
|
image: cm2network/steamcmd:root
|
||||||
#needs: [export-windows, export-linux]
|
needs: [export-windows, export-linux]
|
||||||
steps:
|
steps:
|
||||||
# Need to install nodejs and git, and initalize git lfs for checkout
|
# Need to install nodejs and git, and initalize git lfs for checkout
|
||||||
- name: Install node.js and git
|
- name: Install node.js and git
|
||||||
@ -102,6 +102,20 @@ jobs:
|
|||||||
uses: https://gitea.com/actions/checkout@v4
|
uses: https://gitea.com/actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
lfs: true
|
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
|
- name: Read Cache
|
||||||
run: |
|
run: |
|
||||||
echo "TODO Read Cache"
|
echo "TODO Read Cache"
|
||||||
|
|||||||
0
build/bin/.gitkeep
Normal file
0
build/bin/.gitkeep
Normal file
Reference in New Issue
Block a user