mirror of
https://github.com/nzp-team/quakespasm.git
synced 2025-02-16 16:41:39 +00:00
YML: ..don't make it at root though
This commit is contained in:
parent
729f5c25fb
commit
0e4dd883eb
1 changed files with 4 additions and 4 deletions
8
.github/workflows/build-and-release.yml
vendored
8
.github/workflows/build-and-release.yml
vendored
|
@ -53,11 +53,11 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Make Artifact Directory
|
- name: Make Artifact Directory
|
||||||
run: |
|
run: |
|
||||||
mkdir /artifacts/
|
mkdir ./artifacts/
|
||||||
- name: Download Artifacts
|
- name: Download Artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: /artifacts/
|
path: ./artifacts/
|
||||||
- name: Generate Build Date
|
- name: Generate Build Date
|
||||||
id: date
|
id: date
|
||||||
run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M-%S')"
|
run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M-%S')"
|
||||||
|
@ -91,7 +91,7 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
asset_path: /artifacts/vita-nzp-vpk.zip
|
asset_path: ./artifacts/vita-nzp-vpk.zip
|
||||||
asset_name: vita-nzp-vpk.zip
|
asset_name: vita-nzp-vpk.zip
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/zip
|
||||||
- name: Upload NX Archive
|
- name: Upload NX Archive
|
||||||
|
@ -100,7 +100,7 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
asset_path: /artifacts/nx-nzp-nro.zip
|
asset_path: ./artifacts/nx-nzp-nro.zip
|
||||||
asset_name: nx-nzp-nro.zip
|
asset_name: nx-nzp-nro.zip
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/zip
|
||||||
- name: Publish Release
|
- name: Publish Release
|
||||||
|
|
Loading…
Reference in a new issue