Skip to content

Bump golang.org/x/image from 0.10.0 to 0.18.0 (#268) #284

Bump golang.org/x/image from 0.10.0 to 0.18.0 (#268)

Bump golang.org/x/image from 0.10.0 to 0.18.0 (#268) #284

Workflow file for this run

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}