Skip to content

Commit

Permalink
use artifact instead
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK committed Feb 17, 2025
1 parent 8180741 commit 478469c
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/full_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,12 @@ jobs:
cd ../..
done
- name: Cache dependencies
uses: actions/cache@v4
- name: Upload dependencies
uses: actions/upload-artifact@v4
with:
path: contrib/depends/built
key: deps-${{ matrix.target }}-${{ hashFiles('contrib/depends/packages/*.mk') }}
name: deps-${{ matrix.target }}
path: contrib/depends
retention-days: 1

build_coins:
needs: build_deps
Expand Down Expand Up @@ -179,10 +180,10 @@ jobs:
key: ${{ matrix.target }}-${{ matrix.coin }}

- name: Restore dependencies
uses: actions/cache@v4
uses: actions/download-artifact@v4
with:
path: contrib/depends/built
key: deps-${{ matrix.target }}-${{ hashFiles('contrib/depends/packages/*.mk') }}
name: deps-${{ matrix.target.name }}
path: contrib/depends

- name: Build ${{ matrix.coin }}
run: |
Expand Down

0 comments on commit 478469c

Please sign in to comment.