Skip to content
Open
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/benchmarks-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
./scripts/run_benchmarks.sh -b

- name: Upload Binary
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: benchmark-binary
path: |
Expand All @@ -44,7 +44,7 @@ jobs:
retention-days: 3

- name: Upload WASM Build Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wasm-artifacts
path: target/release/wbuild
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
./scripts/run_benchmarks.sh -b

- name: Upload Binary
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: benchmark-binary
path: |
Expand All @@ -100,7 +100,7 @@ jobs:
retention-days: 3

- name: Upload WASM Build Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wasm-artifacts
path: target/release/wbuild
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
working-directory: ${{env.BIN_DIR}}
run: gpg --verify ${{env.RELEASE_BIN_FILENAME}}.asc
- name: Upload Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: artifacts-binary-${{matrix.network}}-${{matrix.arch}}-${{github.run_id}}
path: |
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
subwasm info ${{env.WASM_DIR}}/${{env.RELEASE_WASM_FILENAME}} | grep "Core version:.*${{matrix.wasm-core-version}}-${{env.RUNTIME_SPEC_VERSION}}" || \
(echo "ERROR: WASM Core version didn't match ${{matrix.wasm-core-version}}-${{env.RUNTIME_SPEC_VERSION}}" && exit 1)
- name: Upload Artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: artifacts-wasm-${{matrix.network}}-${{github.run_id}}
path: ${{env.WASM_DIR}}/${{env.RELEASE_WASM_FILENAME}}
Expand Down Expand Up @@ -472,7 +472,7 @@ jobs:
run: npm run build
working-directory: js/api-augment
- name: Upload Dist Dir
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: js-api-augment-${{github.run_id}}
path: js/api-augment/dist
Expand All @@ -499,7 +499,7 @@ jobs:
run: npm run build
working-directory: js/ethereum-utils
- name: Upload Dist Dir
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: js-ethereum-utils-${{github.run_id}}
path: js/ethereum-utils/dist
Expand All @@ -526,7 +526,7 @@ jobs:
run: npm run build
working-directory: js/schemas
- name: Upload Dist Dir
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: js-schemas-${{github.run_id}}
path: js/schemas/dist
Expand All @@ -553,7 +553,7 @@ jobs:
run: npm run build
working-directory: js/recovery-sdk
- name: Upload Dist Dir
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: js-recovery-sdk-${{github.run_id}}
path: js/recovery-sdk/dist
Expand Down Expand Up @@ -735,7 +735,7 @@ jobs:
run: |
cat ${{env.OUTPUT_FILENAME}}
- name: Upload Artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: artifacts-metadata-${{github.run_id}}
path: ${{env.OUTPUT_DIR}}/${{env.OUTPUT_FILENAME}}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/verify-pr-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
working-directory: target/${{matrix.build-profile}}
run: cp ${{env.BUILT_BIN_FILENAME}} ${{env.FINAL_BIN_FILENAME}}
- name: Upload Artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: artifacts-binary-${{matrix.network}}-${{matrix.arch}}-${{matrix.branch_alias}}-${{github.run_id}}
path: target/${{matrix.build-profile}}/${{env.FINAL_BIN_FILENAME}}*
Expand Down Expand Up @@ -481,7 +481,7 @@ jobs:
run: npm pack
working-directory: js/api-augment/dist
- name: Upload Artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: artifacts-api-augment-${{github.run_id}}
path: js/api-augment/dist/frequency-chain-api-augment-0.0.0.tgz
Expand Down Expand Up @@ -518,7 +518,7 @@ jobs:
run: npm pack
working-directory: js/ethereum-utils/dist
- name: Upload Artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: artifacts-ethereum-utils-${{github.run_id}}
path: js/ethereum-utils/dist/frequency-chain-ethereum-utils-0.0.0.tgz
Expand Down Expand Up @@ -554,7 +554,7 @@ jobs:
run: npm pack
working-directory: js/schemas/dist
- name: Upload Artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: artifacts-schemas-${{github.run_id}}
path: js/schemas/dist/frequency-chain-schemas-0.0.0.tgz
Expand Down Expand Up @@ -590,7 +590,7 @@ jobs:
run: npm pack
working-directory: js/recovery-sdk/dist
- name: Upload Artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: artifacts-recovery-sdk-${{github.run_id}}
path: js/recovery-sdk/dist/frequency-chain-recovery-sdk-0.0.0.tgz
Expand Down