Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade upload-artifact action to v4 #80

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading