Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
chmod +x "${GITHUB_WORKSPACE}/.github/file-size.sh"
"${GITHUB_WORKSPACE}/.github/file-size.sh"
- name: Upload Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: contracts
path: ./artifacts/
Expand All @@ -62,7 +62,7 @@ jobs:
chmod +x "${GITHUB_WORKSPACE}/scripts/build_schema.sh"
make schemas
- name: Upload Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: schema
path: ./schemas/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Build Deploy Script
run: cargo build -p andromeda-deploy --release
- name: Upload Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: deploy
path: ./target/release/andromeda-deploy
Expand Down Expand Up @@ -78,14 +78,14 @@ jobs:
chmod +x ./andromeda-deploy
./andromeda-deploy
- name: Upload Contract Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: contracts
path: ./artifacts/
if-no-files-found: error
retention-days: 1
- name: Upload Schema Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: temp-schemas
path: ./schemas/
Expand Down
Loading