diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml new file mode 100644 index 0000000..51ae88f --- /dev/null +++ b/.github/workflows/Release.yml @@ -0,0 +1,18 @@ +name: Release + +on: + push: + tags: + - "*" + +jobs: + + release: + + runs-on: macos-latest + + steps: + - name: Release + uses: softprops/action-gh-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}