diff options
| -rw-r--r-- | .github/workflows/draft_release.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/draft_release.yml b/.github/workflows/draft_release.yml new file mode 100644 index 00000000..32d058f0 --- /dev/null +++ b/.github/workflows/draft_release.yml @@ -0,0 +1,21 @@ +name: Main + +on: + push: + # branches: + # - "main" + # tags: + # - "*.*.*" + # Uncomment after testing + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Release + uses: softprops/action-gh-release@v1 + with: + draft: true + generate_release_notes: true |
