Skip to content

v1.1.0

v1.1.0 #3

Workflow file for this run

---
name: Update Tag
on:
release:
types:
- published
env:
TAG_NAME: latest
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Update latest tag
run: |-
git config user.name github-actions
git config user.email github-actions@github.com
git tag --force ${{ env.TAG_NAME }} ${{ github.ref_name }}
git push origin ${{ env.TAG_NAME }} --force