Skip to content

Commit

Permalink
Experiments with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vipulyaara committed Feb 19, 2024
1 parent c3a3060 commit 21040c4
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@ jobs:
PIPELESS_AUTH_TOKEN: ${{ secrets.PIPELESS_AUTH_TOKEN }}

steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3
with:
path: main

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Checkout Sarahang
uses: actions/checkout@v3
with:
repository: vipulyaara/sarahang
path: sarahang
ref: master

- name: setup JDK 17
uses: actions/setup-java@v3
Expand All @@ -29,9 +42,6 @@ jobs:
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Create Google Services JSON File
env:
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
Expand Down

0 comments on commit 21040c4

Please sign in to comment.