Skip to content

Bump golang from 1.23.5-alpine to 1.23.6-alpine (#315) #335

Bump golang from 1.23.5-alpine to 1.23.6-alpine (#315)

Bump golang from 1.23.5-alpine to 1.23.6-alpine (#315) #335

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}