diff --git a/.github/workflows/automatic-prerelease.yml b/.github/workflows/automatic-prerelease.yml new file mode 100644 index 0000000..7787a68 --- /dev/null +++ b/.github/workflows/automatic-prerelease.yml @@ -0,0 +1,28 @@ +--- +name: "pre-release" + +on: + push: + branches: + - "master" + +jobs: + pre-release: + name: "Pre Release" + runs-on: "ubuntu-latest" + + steps: + # ... + - name: "Build & test" + run: | + echo "done!" + + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "latest" + prerelease: true + title: "Development Build" + files: | + LICENSE.txt + *.jar