Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created January 21, 2022 12:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PatilShreyas/77ef814346f91a7036ea372d714bebbf to your computer and use it in GitHub Desktop.
Save PatilShreyas/77ef814346f91a7036ea372d714bebbf to your computer and use it in GitHub Desktop.
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Grant Permission to Execute Gradle
run: chmod +x gradlew
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment