Merge pull request #280 from b123400/fix-278 #12
Workflow file for this run
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
name: Build | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' # See 'Supported distributions' for available options | |
java-version: '17' | |
- run: | | |
cd java | |
make jar | |
- uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: | | |
java/server/target/universal/yopenedi-1.0-SNAPSHOT.zip |