Skip to content

Update main.yml

Update main.yml #4

Workflow file for this run

name: Update Tag
on:
push:
branches:
- main
jobs:
update-tag:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create tag
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
run: |
git tag -f release main
git push -f origin release