Skip to content

Commit

Permalink
chore(release): add restore build artifacts step
Browse files Browse the repository at this point in the history
Add a new step to restore build artifacts from cache, using GitHub Actions cache action.
  • Loading branch information
dikkadev committed Aug 5, 2023
1 parent 51e5e74 commit b0e9b7a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Restore build artifacts
uses: actions/cache@v2
with:
path: ./build
key: ${{ runner.run_id }}
restore-keys: |
${{ runner.run_id }}
- name: Cache Choco packages
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -41,6 +49,7 @@ jobs:
make
- name: Release
if: ${{ success() }}
uses: softprops/action-gh-release@v1
with:
files: ./build/SynthPointer.dll

0 comments on commit b0e9b7a

Please sign in to comment.