Skip to content

Abitrary change

Abitrary change #3

Workflow file for this run

name: On Release Published
on:
release:
types: [published]
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create Tag
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git tag -d prod
git push --delete origin prod
git tag -a prod "${{ github.event.release.tag_name }}"^{} -m "Release ${{ github.event.release.tag_name }} set as published"
git push origin prod