Replace old screenshots with new image links #9
This file contains hidden or 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: | |
| - master | |
| jobs: | |
| pre-release: | |
| name: "Pre Release" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v2 | |
| with: | |
| java-version: '17' | |
| distribution: 'adopt' | |
| - name: NBM | |
| run: mvn -Dkeypass=${{secrets.KEYPASS}} verify | |
| - uses: marvinpinto/action-automatic-releases@latest | |
| with: | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| automatic_release_tag: "latest" | |
| prerelease: true | |
| title: "Development Build" | |
| files: | | |
| target/*.jar | |
| target/*.nbm | |