From 1fe8ec3e4fb06be2ce5fe2b190d7029dbc59eebd Mon Sep 17 00:00:00 2001 From: Tadeo Hepperle <62739623+tadeohepperle@users.noreply.github.com> Date: Wed, 14 Feb 2024 16:02:51 +0100 Subject: [PATCH] [Fix] Auto-generated PR: delete polkadot binaries from working directory. (#1431) * delete substrate and polkadot binaries * use nodes should move instead of copy and remove the archive --- .github/workflows/actions/use-nodes/action.yml | 9 +++++---- .github/workflows/update-artifacts.yml | 3 --- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/actions/use-nodes/action.yml b/.github/workflows/actions/use-nodes/action.yml index b1785f9067..bb2b9723d4 100644 --- a/.github/workflows/actions/use-nodes/action.yml +++ b/.github/workflows/actions/use-nodes/action.yml @@ -33,7 +33,8 @@ runs: ./substrate-node --version ./polkadot --version mkdir -p ~/.local/bin - cp ./substrate-node ~/.local/bin - cp ./polkadot ~/.local/bin - cp ./polkadot-execute-worker ~/.local/bin - cp ./polkadot-prepare-worker ~/.local/bin + mv ./substrate-node ~/.local/bin + mv ./polkadot ~/.local/bin + mv ./polkadot-execute-worker ~/.local/bin + mv ./polkadot-prepare-worker ~/.local/bin + rm ./polkadot.tar.gz diff --git a/.github/workflows/update-artifacts.yml b/.github/workflows/update-artifacts.yml index 49c2a86d18..491f8d4099 100644 --- a/.github/workflows/update-artifacts.yml +++ b/.github/workflows/update-artifacts.yml @@ -41,9 +41,6 @@ jobs: - name: Fetch Artifacts run: cargo run --bin artifacts - - name: Delete substrate node binary - run: rm ./substrate-node - - uses: actions/create-github-app-token@v1 id: app-token with: