Skip to content

Commit

Permalink
ci: fix efa installer caching
Browse files Browse the repository at this point in the history
Unfortunately, this couldn't be tested without introducing the action to the
repo so that the action appeared in the UI.  It was implemented with a script
issue. This fixes that script issue, and can be tested before merging now that
the initial action was introduced to the repository.
  • Loading branch information
Nicholas Sielicki authored and rajachan committed Aug 29, 2024
1 parent 825c598 commit 49dacb8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/cache_efa_installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ jobs:
- 1.25.0
runs-on: ubuntu-latest
steps:
- run: curl -s -L https://efa-installer.amazonaws.com/aws-efa-installer-${{ matrix.version }}.tar.gz | tar xvz -
- uses: actions/cache@v3
- run: curl -O https://efa-installer.amazonaws.com/aws-efa-installer-${{ matrix.version }}.tar.gz
- run: tar xvf ./aws-efa-installer*.tar.gz
- uses: actions/cache@v4
with:
enableCrossOsArchive: true
key: aws-efa-installer-${{ matrix.version }}
path: aws-efa-installer
path: aws-efa-installer/*

0 comments on commit 49dacb8

Please sign in to comment.