We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94a4a5d commit b1e4cd5Copy full SHA for b1e4cd5
2 files changed
.github/workflows/fdroid_release.yaml
@@ -3,7 +3,7 @@ name: FDroid Release
3
on:
4
push:
5
tags:
6
- - "*fdroid*"
+ - '*'
7
8
jobs:
9
build-release:
@@ -52,7 +52,7 @@ jobs:
52
# Build Changelog
53
- name: Build Changelog
54
id: build_changelog
55
- uses: ardalanamini/auto-changelog@v3
+ uses: ardalanamini/auto-changelog@v4
56
with:
57
mention-authors: false
58
mention-new-contributors: true
.github/workflows/workflow.yaml
@@ -5,15 +5,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
10
- name: Setup JDK
11
- uses: actions/setup-java@v4
+ uses: actions/setup-java@v5
12
13
java-version: 17
14
distribution: temurin
15
16
- name: Build
17
- run: |
18
- ./gradlew check
19
- ./gradlew assembleDebug
+ run: ./gradlew check assembleDebug
0 commit comments