Skip to content

Update release.yml

Update release.yml #2

Workflow file for this run

name: Create Release
on:
push:
tags:
- '*'
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: create branch
run: |
git config user.name "github-actions[bot]"
git config user.email "[email protected]"
git checkout -b ${{ github.ref_name }}
git push -u origin /refs/heads/${{ github.ref_name }}