Skip to content

Commit

Permalink
Update actions (#300)
Browse files Browse the repository at this point in the history
* Bump version of upload-artifact actions

* clean up yaml a little
  • Loading branch information
peterebden authored Sep 9, 2024
1 parent 6ba2813 commit 004a8b3
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ jobs:
run: ./pleasew test -p -v notice --log_file plz-out/log/test.log
- name: Archive logs
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: logs
path: |
plz-out/log
path: plz-out/log
test_coverage:
runs-on: ubuntu-latest
steps:
Expand All @@ -24,11 +23,10 @@ jobs:
run: ./pleasew cover -p -v notice --nocoverage_report --log_file plz-out/log/test_coverage.log
- name: Archive logs
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coverage_logs
path: |
plz-out/log
path: plz-out/log
test_tools:
runs-on: ubuntu-latest
steps:
Expand All @@ -38,11 +36,10 @@ jobs:
run: ./pleasew cover -p -v notice --nocoverage_report --log_file plz-out/log/test_tools.log
- name: Archive logs
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: tools_logs
path: |
plz-out/log
path: plz-out/log
test_debug:
runs-on: ubuntu-latest
steps:
Expand All @@ -52,11 +49,10 @@ jobs:
run: ./pleasew build -c dbg -p -v notice --log_file plz-out/log/test_debug.log
- name: Archive logs
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: debug_logs
path: |
plz-out/log
path: plz-out/log
release:
needs:
- test
Expand Down

0 comments on commit 004a8b3

Please sign in to comment.