Skip to content

⬆️ CI/CD: Updated #6

⬆️ CI/CD: Updated

⬆️ CI/CD: Updated #6

name: Release
on:
push:
branches:
- 'release/**'
permissions:
contents: write
jobs:
deployment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG: ${GITHUB_REF##*/}
run: |
gh release create "$TAG" \
--repo="$GITHUB_REPOSITORY" \
--title="${TAG}" \
--generate-notes