Skip to content

Commit

Permalink
Merge pull request #35 from dinkelk/main
Browse files Browse the repository at this point in the history
Refine Github action artifacts
  • Loading branch information
dinkelk authored Sep 14, 2024
2 parents 16e4afa + 818d20c commit e3f0275
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 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 }}."
2 changes: 1 addition & 1 deletion .github/workflows/publish_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:
jobs:
compile_job:
name: test_all
name: publish_all
runs-on: ubuntu-latest
container:
image: ghcr.io/lasp/adamant_example:latest
Expand Down
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 e3f0275

Please sign in to comment.