Skip to content

Commit

Permalink
Merge pull request #59 from topminipie/master
Browse files Browse the repository at this point in the history
Update ci.yml (Fix Node.js warnings)
  • Loading branch information
bubelov authored May 13, 2024
2 parents a1bdf12 + ce546e2 commit 74974da
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/checkout@v2
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3

- name: Install JDK
uses: actions/setup-java@v2
- name: Install JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
java-version: 17
distribution: temurin
cache: gradle

- name: Grant execute permission for gradlew
Expand All @@ -33,10 +35,10 @@ jobs:
run: ./gradlew assemble

- name: Create preview release
uses: marvinpinto/action-automatic-releases@latest
uses: softprops/action-gh-release@v2
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: 'preview'
token: "${{ secrets.GITHUB_TOKEN }}"
tag_name: 'preview'
prerelease: true
title: 'preview'
name: 'preview'
files: app/build/outputs/apk/fdroidSelfSigned/release/app-*.apk
1 change: 1 addition & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=544c35d6bd849ae8a5ed0bcea39ba677dc40f49df7d1835561582da2009b961d
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
Expand Down

0 comments on commit 74974da

Please sign in to comment.