We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 963ae3a commit a5851f0Copy full SHA for a5851f0
.github/workflows/release.yml
@@ -33,10 +33,11 @@ jobs:
33
build
34
node_modules
35
key: ${{ runner.os }}-gradle-npm-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'package-lock.json') }}
36
- - name: Build with Gradle
+ - name: Build
37
env:
38
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
- run: ./gradlew build --no-daemon
+ # Cleaning is necessary to avoid uploading two identical artifacts with different versions
40
+ run: ./gradlew clean --no-daemon
41
- name: Setup semantic-release
42
run: npm install
43
- name: Release
0 commit comments