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/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
tar czvf joystream-node-macos.tar.gz -C ./target/release joystream-node

- name: Temporarily save node binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: joystream-node-macos-${{ steps.compute_shasum.outputs.shasum }}
path: joystream-node-macos.tar.gz
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
tar -czvf joystream-node-$VERSION_AND_COMMIT-arm64-linux-gnu.tar.gz joystream-node

- name: Retrieve saved MacOS binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: joystream-node-macos-${{ steps.compute_shasum.outputs.shasum }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-node-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
7z a -p${{ steps.network_config.outputs.encryptionKey }} chain-data.7z deploy_artifacts/*

- name: Save the output as an artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: data-chainspec-auth
path: devops/ansible/chain-data.7z
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ on:
description: 'SURI of treasury account'
required: false
default: '//Alice'
initialBalances:
initialBalances:
description: 'JSON string or http URL to override initial balances and vesting config'
default: ''
required: false
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
--verbose

- name: Save the endpoints file as an artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: endpoints
path: devops/ansible/endpoints.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-network-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
if: steps.check_files.outputs.files_exists == 'false'

- name: Save joystream/node image to Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.compute_shasum.outputs.shasum }}-joystream-node-docker-image.tar.gz
path: joystream-node-docker-image.tar.gz
Expand All @@ -166,7 +166,7 @@ jobs:
with:
node-version: '18.x'
- name: Get artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.build_images.outputs.use_artifact }}
- name: Install artifacts
Expand Down
2 changes: 1 addition & 1 deletion devops/extrinsic-ordering/tx-ordering.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: pkill polkadot

- name: Save output as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.CHAIN }}
path: |
Expand Down
Loading