Skip to content

Commit

Permalink
Start working on publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
raducoravu committed Jan 21, 2024
1 parent de5441d commit a2d5d22
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a2d5d22

Please sign in to comment.