Skip to content

Commit

Permalink
ci: add/update release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wetransformer committed Aug 15, 2024
1 parent d33ff31 commit 05054b1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tf-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
#
# PLEASE NOTE: Managed workflow - do not change manually
#
name: Release

on:
workflow_dispatch: {}

concurrency:
# only run one publishing at a time to avoid conflicts
group: publish-${{ github.ref }}

jobs:
publish:
uses: wetransform/gha-workflows/.github/workflows/gradle-library-publish.yml@2c69afaa675dfca01d1bb1acb6150187f0dad05a # v2.3.0
with:
java-version: 17
multi-module: false
semantic-release: true
secrets:
WETF_ARTIFACTORY_USER: ${{ secrets.WETF_ARTIFACTORY_USER }}
WETF_ARTIFACTORY_PASSWORD: ${{ secrets.WETF_ARTIFACTORY_PASSWORD }}
SLACK_NOTIFICATIONS_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
WE_RELEASE_GITHUB_APP_ID: ${{ secrets.WE_RELEASE_GITHUB_APP_ID }}
WE_RELEASE_GITHUB_PRIVATE_KEY: ${{ secrets.WE_RELEASE_GITHUB_PRIVATE_KEY }}

0 comments on commit 05054b1

Please sign in to comment.