Skip to content

Commit

Permalink
_ci: add cache to bump
Browse files Browse the repository at this point in the history
  • Loading branch information
cakekindel committed May 10, 2021
1 parent e1378b0 commit 74f11e5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ jobs:
with:
token: ${{ secrets.GH_TOKEN }}

- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- run: |
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git config --global user.name "${{ github.actor }}"
Expand Down

0 comments on commit 74f11e5

Please sign in to comment.