diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 00000000..d88edfc7 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,26 @@ +name: Validate And Check For Completeness Blog + +on: + push: + branches: + - master + +jobs: + publish-netlify: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '21' + - name: Make gradlew executable + run: chmod +x ./build/gradlewCustom + - name: Build with Gradle + env: # Or as an environment variable + LICENSE_KEY: ${{secrets.LICENSE_KEY}} + run: | + cd ./build + ./gradlewCustom --info --stacktrace