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
8 changes: 4 additions & 4 deletions .github/workflows/build-node-and-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ jobs:
run: cargo build --profile production -p aleph-node

- name: Upload release binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.artifact-prefix }}aleph-release-node
path: target/production/aleph-node
if-no-files-found: error
retention-days: 7

- name: Upload release runtime
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.artifact-prefix }}aleph-release-runtime
path: target/production/wbuild/aleph-runtime/aleph_runtime.compact.wasm
Expand Down Expand Up @@ -104,15 +104,15 @@ jobs:
run: cargo build --release -p aleph-node --features "short_session enable_treasury_proposals only_legacy"

- name: Upload test binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.artifact-prefix }}aleph-test-node
path: target/release/aleph-node
if-no-files-found: error
retention-days: 7

- name: Upload test runtime
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.artifact-prefix }}aleph-test-runtime
path: target/release/wbuild/aleph-runtime/aleph_runtime.compact.wasm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-tests-main-devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
docker save -o aleph-node.tar aleph-node:latest

- name: Upload test docker image
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: aleph-test-docker
path: aleph-node.tar
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
docker save -o cliain.tar cliain:latest

- name: Upload test docker image
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: cliain-docker
path: ./bin/cliain/cliain.tar
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
uses: ./.github/actions/post-cache

- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: aleph-e2e-client
path: e2e-tests/aleph-e2e-client.tar
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
docker save -o aleph-node.tar aleph-node:latest

- name: Upload test docker image
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: aleph-test-docker
path: aleph-node.tar
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
uses: ./.github/actions/post-cache

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: aleph-e2e-client
path: e2e-tests/aleph-e2e-client.tar
Expand Down