Skip to content

Commit

Permalink
build(nightly): compile appkit dependency with workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasGGamerM authored Jun 10, 2023
1 parent 5dcda4f commit 51294bb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/nightly-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,28 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout Appkit Repo
uses: actions/checkout@v3
with:
repository: grishka/appkit

- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
cache: gradle

- name: Comment out signing config in appkits gradle file
run: |
sed -i 's/sign publishing\.publications\.release/\/\/ sign publishing.publications.release/' appkit/maven-push.gradle
- name: Grant execute permission for gradlew for Appkit
run: chmod +x gradlew

- name: Compile appkit
run: ./gradlew publishToMavenLocal

- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
Expand Down

0 comments on commit 51294bb

Please sign in to comment.