Skip to content

Commit

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

on:
push:
branches:
- master
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: false
secrets:
WETF_ARTIFACTORY_USER: ${{ secrets.WETF_ARTIFACTORY_USER }}
WETF_ARTIFACTORY_PASSWORD: ${{ secrets.WETF_ARTIFACTORY_PASSWORD }}
SLACK_NOTIFICATIONS_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}

0 comments on commit 2c5f454

Please sign in to comment.