diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index ff96cc0..e3170d0 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -51,21 +51,10 @@ jobs: dependencies: ${{ inputs.cargo-dependencies }} path: service/ - - name: Download marine artifact - id: marine - uses: actions/download-artifact@v3 - continue-on-error: true - with: - name: marine - path: ~/.local/bin - - - name: Make marine executable - if: steps.marine.outcome == 'success' - run: chmod +x ~/.local/bin/marine - - name: Setup marine - if: steps.marine.outcome == 'failure' uses: fluencelabs/setup-marine@v1 + with: + artifact-name: marine - name: Import secrets if: inputs.snapshot == true diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1fe492c..1f419f2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -90,21 +90,10 @@ jobs: with: cache: false - - name: Download marine artifact - id: marine - uses: actions/download-artifact@v3 - continue-on-error: true - with: - name: marine - path: ~/.local/bin - - - name: Make marine executable - if: steps.marine.outcome == 'success' - run: chmod +x ~/.local/bin/marine - - name: Setup marine - if: steps.marine.outcome == 'failure' uses: fluencelabs/setup-marine@v1 + with: + artifact-name: marine - name: Set dependencies if: inputs.cargo-dependencies != ''