From 2c5f45456ef3758cc43baaadb41d7e61ea8192da Mon Sep 17 00:00:00 2001 From: wetransform Bot <113353961+wetransformer@users.noreply.github.com> Date: Thu, 15 Aug 2024 11:49:15 +0000 Subject: [PATCH] ci: add/update publish workflow --- .github/workflows/tf-publish.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/tf-publish.yml diff --git a/.github/workflows/tf-publish.yml b/.github/workflows/tf-publish.yml new file mode 100644 index 0000000..8006af1 --- /dev/null +++ b/.github/workflows/tf-publish.yml @@ -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 }}