mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
YML: Explicitly set Artifact path
This commit is contained in:
parent
82473b34da
commit
729f5c25fb
1 changed files with 7 additions and 2 deletions
9
.github/workflows/build-and-release.yml
vendored
9
.github/workflows/build-and-release.yml
vendored
|
@ -51,8 +51,13 @@ jobs:
|
|||
- name: Wait for GitHub to keep up..
|
||||
run: sleep 5s
|
||||
shell: bash
|
||||
- name: Make Artifact Directory
|
||||
run: |
|
||||
mkdir /artifacts/
|
||||
- name: Download Artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: /artifacts/
|
||||
- name: Generate Build Date
|
||||
id: date
|
||||
run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M-%S')"
|
||||
|
@ -86,7 +91,7 @@ jobs:
|
|||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: ./vita-nzp-vpk.zip
|
||||
asset_path: /artifacts/vita-nzp-vpk.zip
|
||||
asset_name: vita-nzp-vpk.zip
|
||||
asset_content_type: application/zip
|
||||
- name: Upload NX Archive
|
||||
|
@ -95,7 +100,7 @@ jobs:
|
|||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: ./nx-nzp-nro.zip
|
||||
asset_path: /artifacts/nx-nzp-nro.zip
|
||||
asset_name: nx-nzp-nro.zip
|
||||
asset_content_type: application/zip
|
||||
- name: Publish Release
|
||||
|
|
Loading…
Reference in a new issue