Add a Github workflow to automatically make releases

This commit is contained in:
Marco d'Itri 2023-11-09 22:04:58 +01:00
parent 977d6242d2
commit 3ab4353e9e

18
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Publish a Github release
on:
push:
branches:
- master
tags:
- "v*.*"
jobs:
release:
runs-on: debian-latest
permissions:
contents: write
steps:
- name: Release
uses: softprops/action-gh-release@v1