diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2024-09-11 02:26:39 +0200 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2024-09-11 02:26:39 +0200 |
| commit | 7ff424d148d953c1c7a950537d82dd49f9e2dbc8 (patch) | |
| tree | 2fa2fba7e71aeaae69008aa368751ba7ecc4402d | |
| parent | f4322886f3686cd699be8f7a777a723741554133 (diff) | |
ci: specify path
| -rw-r--r-- | .github/workflows/nightly.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index afc2f0739..2b04d3aed 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -180,21 +180,31 @@ jobs: uses: actions/download-artifact@v4.1.7 with: name: windows_artifacts + path: windows_artifacts - name: Download Ubuntu artifacts uses: actions/download-artifact@v4.1.7 with: name: linux_artifacts + path: linux_artifacts - name: Download macOS artifacts uses: actions/download-artifact@v4.1.7 with: name: macos_artifacts + path: macos_artifacts - name: Download macOS arm artifacts uses: actions/download-artifact@v4.1.7 with: name: macos_arm_artifacts + path: macos_arm_artifacts + + - name: Debug + run: | + tree -d -L 2 + + - uses: actions/checkout@v4 - name: Create archives and upload shell: bash @@ -204,7 +214,6 @@ jobs: BUCKET: ${{ secrets.B2_BUCKET }} DAYS_TO_KEEP: ${{ secrets.B2_DAYS_TO_KEEP }} run: | - tree -d -L 2 python3 ci/nightly.py artifact windows-amd64 windows_artifacts/ python3 ci/nightly.py artifact linux-amd64 linux_artifacts/dist.tar.gz python3 ci/nightly.py artifact macos-amd64 macos_artifacts/dist.tar.gz |