Bump golang.org/x/net from 0.26.0 to 0.33.0 (#311) #332
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
name: Git tag | |
on: | |
push: | |
branches: [master] | |
jobs: | |
git-tag: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
with: | |
# NOTE @v2 uses the token as an auth http header. Set it to | |
# a Personal Access Token instead of secrets.GITHUB_TOKEN | |
# so that tag pushes trigger repo push events. | |
token: ${{ secrets.GH_PAT_REPO_FULL_ACCESS }} | |
- name: Save the version to an environment file | |
run: echo "VERSION=$(cat VERSION)" >> $GITHUB_ENV | |
- run: git tag ${VERSION} | |
- run: git push origin ${VERSION} |