Skip to content

Commit

Permalink
Merge pull request #80 from aws-beam/upgrade-upload-artifact-to-v4
Browse files Browse the repository at this point in the history
Upgrade upload-artifact action to v4
  • Loading branch information
onno-vos-dev authored Nov 6, 2024
2 parents 83d88d3 + faee75d commit 6040c98
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@ jobs:
- name: Run CT Tests
run: rebar3 ct
- name: Store CT Logs
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ct-logs
name: ct-logs_otp${{ matrix.otp-version }}_ref${{ github.sha }}
path: _build/test/logs
overwrite: true
retention-days: 5
- name: Run Checks
run: rebar3 do dialyzer, xref
- name: Create Cover Reports
Expand All @@ -56,15 +58,16 @@ jobs:
- name: Produce Documentation
run: rebar3 ex_doc || true
- name: Publish Documentation
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: edoc
name: edoc_otp${{ matrix.otp-version }}
path: doc
overwrite: true
docs:
strategy:
matrix:
platform: [ubuntu-latest]
otp-version: [24, 25, 26, 27]
otp-version: [25, 26, 27]
runs-on: ${{ matrix.platform }}
container:
image: erlang:${{ matrix.otp-version }}
Expand Down

0 comments on commit 6040c98

Please sign in to comment.