diff options
| author | lhchavez <[email protected]> | 2022-10-04 18:12:23 -0700 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-04 18:12:23 -0700 | 
| commit | 4b14d29c207e9969ea62a7fe07d490b036c14722 (patch) | |
| tree | e3417031c49f6c9407cf0614a7611d6afe96cb0c | |
| parent | c1ec21d89caa0cdb0aefd6f6b8f95648418a3543 (diff) | |
Fix the `github-tag-action` workflow (#932)
This has been failing for a while because of some changes in `git`.
| -rw-r--r-- | .github/workflows/tag.yml | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index a1da6c1..d939528 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -19,7 +19,7 @@ jobs:          fetch-depth: 0      - name: Bump version and push tag        id: bump-version -      uses: anothrNick/github-tag-action@9aaabdb5e989894e95288328d8b17a6347217ae3 +      uses: anothrNick/github-tag-action@43ed073f5c1445ca8b80d920ce2f8fa550ae4e8d        env:          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}          WITH_V: true  | 
