Skip to content

Commit

Permalink
push release tag via reckon
Browse files Browse the repository at this point in the history
  • Loading branch information
chklauser committed Jan 27, 2024
1 parent dd9e6eb commit ad054c0
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
# Building & Testing the examples project so that we can do everything in 1 build
build-root-directory: examples
arguments: :plugin:assemble :plugin:check assemble check --continue --stacktrace
properties: |
reckon.scope=${{ github.event.inputs.scope }}
reckon.stage=${{ github.event.inputs.stage }}
- name: Publish Release
if: github.ref == 'refs/heads/main'
uses: burrunan/gradle-cache-action@a54b6ce2cbbba932e5d142129dddef103e6ad143
Expand All @@ -49,9 +52,16 @@ jobs:
gradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }}
gradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }}
- name: Push git tag
run: |
git push origin --tags
if: github.ref == 'refs/heads/main'
uses: burrunan/gradle-cache-action@a54b6ce2cbbba932e5d142129dddef103e6ad143
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
build-root-directory: plugin
arguments: reckonTagPush --continue --stacktrace
execution-only-caches: true
properties: |
reckon.scope=${{ github.event.inputs.scope }}
reckon.stage=${{ github.event.inputs.stage }}

0 comments on commit ad054c0

Please sign in to comment.