Skip to content

Commit

Permalink
Add a Github workflow to automatically make releases
Browse files Browse the repository at this point in the history
  • Loading branch information
rfc1036 committed Nov 9, 2023
1 parent 977d624 commit f7aeb54
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Publish a Github release

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

jobs:
release:
runs-on: debian-latest
permissions:
contents: write
steps:
- name: Release
uses: softprops/action-gh-release@v1

0 comments on commit f7aeb54

Please sign in to comment.