Skip to content

Commit

Permalink
Refine workflow artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
dinkelk committed Sep 14, 2024
1 parent 16e4afa commit b899583
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: linux_elf
path: adamant_example/src/assembly/linux/main/build/bin/Linux/main.elf
path: ${{ github.workspace }}/adamant_example/src/assembly/linux/main/build/bin/Linux/main.elf
if-no-files-found: error
- run: echo "Finished with status - ${{ job.status }}."
4 changes: 2 additions & 2 deletions .github/workflows/build_pico.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
name: pico_elf
path: |
adamant_example/src/assembly/pico/main/build/bin/Pico/main.elf
adamant_example/src/assembly/pico/main/build/bin/Pico/main.uf2
${{ github.workspace }}/adamant_example/src/assembly/pico/main/build/bin/Pico/main.elf
${{ github.workspace }}/adamant_example/src/assembly/pico/main/build/bin/Pico/main.uf2
if-no-files-found: error
- run: echo "Finished with status - ${{ job.status }}."
4 changes: 2 additions & 2 deletions .github/workflows/style_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: failed_style_logs
path: adamant_example/build/failed_style_logs
name: style_logs
path: ${{ github.workspace }}/adamant_example/build
if-no-files-found: ignore
- run: echo "Finished with status - ${{ job.status }}."
if: always()
4 changes: 2 additions & 2 deletions .github/workflows/test_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: failed_test_logs
path: adamant_example/build/failed_test_logs
name: test_logs
path: ${{ github.workspace }}/adamant_example/build
if-no-files-found: ignore
- run: echo "Finished with status - ${{ job.status }}."
if: always()

0 comments on commit b899583

Please sign in to comment.