Skip to content

Commit

Permalink
Merge pull request Kernel360#293 from Kernel360/develop
Browse files Browse the repository at this point in the history
[setting] add release yml
  • Loading branch information
Hju95 authored Feb 22, 2024
2 parents 4bae670 + 6be071d commit 634d827
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: github action tag release

on:
push:
branches:
- main

jobs:
setup-build-deploy:
name: Setup, Build, and Deploy
runs-on: ubuntu-latest
permissions:
packages: write
contents: write
id-token: write

steps:
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}

0 comments on commit 634d827

Please sign in to comment.