Merge pull request #75 from moacirrf/fix-checkbox #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## YAML Template. | |
--- | |
name: Pre Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
pre-release: | |
name: "Pre Release" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- run: mvn -Dkeypass=${{secrets.KEYPASS}} verify | |
- uses: marvinpinto/action-automatic-releases@v1.2.1 | |
with: | |
repo_token: "${{ secrets.NETBEANS_ACTION_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Development Build" | |
files: | | |
target/*.jar | |
target/*.nbm | |
target/*.asc |