Bump gradle/gradle-build-action from 2 to 3 #4
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
# TODO: enable release workflow | |
#name: Release | |
#on: | |
# push: | |
# tags: | |
# - v0.[0-9]+.[0-9]+ | |
#concurrency: | |
# group: ${{ github.workflow }}-${{ github.ref }} | |
#jobs: | |
# build-and-stage-release: | |
# if: ${{ github.repository == 'PENEKhun/springdog' }} | |
# name: Build and Stage Release | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Set Up JDK 17 | |
# uses: actions/setup-java@v4 | |
# with: | |
# java-version: '17' | |
# distribution: 'adopt' | |
# - name: Check Out | |
# uses: actions/checkout@v4 | |
# - name: Build and tests | |
# id: build | |
# run: ./gradlew build | |
# outputs: | |
# version: ${{ steps.build.outputs.version }} | |
# create-github-release: | |
# name: Create GitHub Release | |
# needs: | |
# - build-and-stage-release | |
# - promote-release | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check Out Code | |
# uses: actions/checkout@v4 | |
# - name: Create GitHub Release | |
# uses: ./.github/actions/create-github-release | |
# with: | |
# milestone: ${{ needs.build-and-stage-release.outputs.version }} | |
# token: ${{ secrets.TOKEN }} |