Skip to content

Commit

Permalink
fix(ignore): Attempt to fix cache not saving
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Aug 1, 2023
1 parent 683d29f commit fa02bb5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release_please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
path: ./z2m-master
ref: master

- name: Cache commit-user-lookup.json
uses: actions/cache@v3
- name: Restore cache commit-user-lookup.json
uses: actions/cache/restore@v3
with:
path: z2m/scripts/commit-user-lookup.json
key: always
Expand All @@ -69,6 +69,12 @@ jobs:
with:
name: changelog
path: changelog.txt
- name: Save cache commit-user-lookup.json
uses: actions/cache/save@v3
if: always()
with:
path: z2m/scripts/commit-user-lookup.json
key: always

create_release:
runs-on: ubuntu-latest
Expand Down

0 comments on commit fa02bb5

Please sign in to comment.