chore: change mining min outputs #113
Workflow file for this run
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
| name: "release" | |
| on: | |
| push: | |
| tags: | |
| - '[0-9]+.[0-9]+.[0-9]+' | |
| - '[0-9]+.[0-9]+.[0-9]+-fairness-dev' | |
| - '[0-9]+.[0-9]+.[0-9]+-fairness-rev' | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| name: Checkout repository | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Java | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 11 | |
| - name: Build | |
| run: | | |
| cd ./argumentation | |
| ./gradlew shadowJar | |
| - uses: pmorelli92/github-container-registry-build-push@2.0.0 | |
| name: Build and Publish Image | |
| with: | |
| github-push-secret: ${{ secrets.GITHUB_TOKEN }} | |
| docker-image-name: automl-container | |
| docker-image-tag: ${{github.ref_name}} | |
| - uses: "marvinpinto/action-automatic-releases@latest" | |
| name: Create release | |
| with: | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| prerelease: false | |
| files: | | |
| ./argumentation/build/libs/*.jar |