Merge pull request #18 from betadots/testing #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
on: | |
push: | |
tags: | |
- '*' | |
name: Create GitHub release 🚀 | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout profile | |
uses: actions/checkout@v4 | |
if: ${{ hashFiles('.github/release.yml') != '' }} | |
with: | |
repository: "${{ github.repository_owner }}/.github" | |
sparse-checkout: release.yml | |
sparse-checkout-cone-mode: false | |
- name: Create Release Page | |
shell: bash | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: gh release create ${{ github.ref_name }} --generate-notes |