diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..769769d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ +name: Create pre-release + +on: + push: + branches: + - "master" + jobs: + pre-release: + name: Pre Release + runs-on: ubuntu-latest + steps: + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + automatic_release_tag: latest + prerelease: true + title: Latest Pre-Release + files: | + LICENSE \ No newline at end of file