Skip to content

Commit

Permalink
github actions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
bansikah22 committed Sep 12, 2024
1 parent 02fcfa3 commit f5466f0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish Release
on:
push:
tags:
- 'v*'
permissions:
packages: write
contents: write
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
contents: write
steps:
- uses: actions/checkout@v3
- name: Create a Release
uses: elgohr/Github-Release-Action@v5
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: Releases

0 comments on commit f5466f0

Please sign in to comment.