Skip to content

Commit

Permalink
fix(GHA): download and install image
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Dec 17, 2024
1 parent ace45ff commit c29f9bc
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,17 @@ jobs:
with:
node-version: '20'

- name: Download artifact
uses: actions/download-artifact@v4
with:
name: vechain-thor-image-${{ github.sha }}
path: /tmp

- name: Load image
run: |
docker load --input /tmp/vechain-thor.tar
docker image ls -a
- name: Install
run: npm install

Expand Down

0 comments on commit c29f9bc

Please sign in to comment.