Don't skip existing license headers if they don't match the format. #70
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: publish | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
- v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+ | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- uses: gradle/actions/setup-gradle@v4 | |
- name: publish-candidate | |
if: contains(github.ref, '-rc.') | |
run: | | |
./gradlew \ | |
-Preleasing \ | |
-Prelease.disableGitChecks=true \ | |
-Prelease.useLastTag=true \ | |
-Dgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }} \ | |
-Dgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }} \ | |
candidate \ | |
publishPlugins | |
- name: publish-release | |
if: (!contains(github.ref, '-rc.')) | |
run: | | |
./gradlew \ | |
-Preleasing \ | |
-Prelease.disableGitChecks=true \ | |
-Prelease.useLastTag=true \ | |
-Dgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }} \ | |
-Dgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }} \ | |
final \ | |
publishPlugins |