Skip to content

Commit

Permalink
cd: Automatically create release with each tag push
Browse files Browse the repository at this point in the history
  • Loading branch information
itislu committed Apr 20, 2024
1 parent 03348bf commit b513a90
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release on Tag

on:
push:
tags:
- 'v*.*.*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Release and Upload Asset
uses: softprops/action-gh-release@v2
with:
files: 42free.sh
generate_release_notes: true
make_latest: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b513a90

Please sign in to comment.