Skip to content

Commit

Permalink
test auto relase bot
Browse files Browse the repository at this point in the history
  • Loading branch information
KSkwarczynski committed Oct 7, 2024
1 parent 1b85749 commit e8eeda5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/MakeRelase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Create MaCh3 Tutorial Release

on:
push:
tags:
- v*

permissions:
contents: write

jobs:
release:
name: Release pushed tag
runs-on: ubuntu-22.04
steps:
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create "${{ github.ref_name }}" \
--repo="${{ github.repository }}" \
--title="${{ github.repository_owner }}/$(basename ${{ github.repository }}) ${{ github.ref_name#v }}" \
--generate-notes

0 comments on commit e8eeda5

Please sign in to comment.