Skip to content

Commit

Permalink
YML: ..don't make it at root though
Browse files Browse the repository at this point in the history
  • Loading branch information
MotoLegacy committed Dec 27, 2023
1 parent 0e4dd88 commit 606fb09
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,15 @@ jobs:
runs-on: ubuntu-latest
needs: [Compile-VPK, Compile-NRO]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Wait for GitHub to keep up..
run: sleep 5s
run: sleep 2s
shell: bash
- name: Make Artifact Directory
run: |
mkdir ./artifacts/
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: ./artifacts/
path: ./
- name: Generate Build Date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M-%S')"
Expand Down Expand Up @@ -91,7 +90,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./artifacts/vita-nzp-vpk.zip
asset_path: ./vita-nzp-vpk.zip
asset_name: vita-nzp-vpk.zip
asset_content_type: application/zip
- name: Upload NX Archive
Expand All @@ -100,7 +99,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./artifacts/nx-nzp-nro.zip
asset_path: ./nx-nzp-nro.zip
asset_name: nx-nzp-nro.zip
asset_content_type: application/zip
- name: Publish Release
Expand Down

0 comments on commit 606fb09

Please sign in to comment.