Skip to content

Commit

Permalink
Use actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed May 29, 2024
1 parent e4228fb commit f3bc6b7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
done
- name: Save build artifacts to build-${{ matrix.target }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cross-build
path: target_releases/*
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
mv target/${{ matrix.target }}/release/martin-cp${{ matrix.ext }} target_releases/
mv target/${{ matrix.target }}/release/mbtiles${{ matrix.ext }} target_releases/
- name: Save build artifacts to build-${{ matrix.target }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.target }}
path: target_releases/*
Expand Down Expand Up @@ -383,7 +383,7 @@ jobs:
DATABASE_URL: ${{ steps.pg.outputs.connection-uri }}
- name: Save test output (on error)
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: failed-test-output-${{ runner.os }}
path: |
Expand Down Expand Up @@ -517,7 +517,7 @@ jobs:
DATABASE_URL: postgres://${{ env.PGUSER }}:${{ env.PGUSER }}@${{ env.PGHOST }}:${{ job.services.postgres.ports[5432] }}/${{ env.PGDATABASE }}?sslmode=${{ matrix.sslmode }}
- name: Save test output (on error)
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-output
path: |
Expand Down Expand Up @@ -631,7 +631,7 @@ jobs:
EOF
- name: Save Homebrew Config
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: homebrew-config
path: target/homebrew_config.yaml
Expand Down

0 comments on commit f3bc6b7

Please sign in to comment.