Skip to content

Commit

Permalink
chore(cicd): enable auto release (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
metrue authored Feb 29, 2024
1 parent b8e28d7 commit a68ae34
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .github/release.yml

This file was deleted.

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: New GitHub Release

on:
push:
tags:
- '*'

jobs:
release:
name: New GitHub Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: 📦 Checkout project repo
uses: actions/checkout@v3

- name: 🏃 Create A Github Release
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
draft: false

0 comments on commit a68ae34

Please sign in to comment.