From 3d9bf4f7213c78d792870efa385cbe934cbf5247 Mon Sep 17 00:00:00 2001 From: Wilfried Kopp Date: Tue, 9 Aug 2022 18:46:46 +0200 Subject: [PATCH] Move to a tmp folder --- .../release-21_extrinsic-ordering-check-from-two.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cumulus/.github/workflows/release-21_extrinsic-ordering-check-from-two.yml b/cumulus/.github/workflows/release-21_extrinsic-ordering-check-from-two.yml index 5fd967682c..04efe5b2fa 100644 --- a/cumulus/.github/workflows/release-21_extrinsic-ordering-check-from-two.yml +++ b/cumulus/.github/workflows/release-21_extrinsic-ordering-check-from-two.yml @@ -22,6 +22,7 @@ jobs: REF_URL: ${{github.event.inputs.reference_binary_url}} BIN_BASE: polkadot-parachain BIN_REF: polkadot-parachain-ref + TMP: ./tmp strategy: fail-fast: false matrix: @@ -43,8 +44,15 @@ jobs: - name: Checkout sources uses: actions/checkout@v3 + - name: Create tmp folder + run: | + mkdir -p $TMP + cd $TMP + pwd + - name: Fetch reference binary run: | + pwd echo Fetching $REF_URL curl $REF_URL -o $BIN_REF chmod a+x $BIN_REF @@ -52,6 +60,7 @@ jobs: - name: Fetch test binary run: | + pwd echo Fetching $BIN_URL curl $BIN_URL -o $BIN_BASE chmod a+x $BIN_BASE