This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
chore(main): release 0.0.3 (#42) #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Do all the stuff we'd need to do so that we save caches on pushes to main | |
on: | |
push: | |
branches: | |
- main | |
defaults: | |
run: | |
shell: bash -e -o pipefail {0} | |
jobs: | |
save-cache: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: restore-cache | |
uses: ./.github/actions/cache | |
with: | |
action: restore | |
- name: update-cache | |
run: make +scriptwrap TARGET=+update-cache | |
- name: Fix cache permissions | |
run: make +scriptwrap TARGET=_fix-cache-permissions | |
- name: save-cache | |
uses: ./.github/actions/cache | |
with: | |
action: save |