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 Oct 2, 2024
1 parent cda07eb commit 6381e7e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/tf-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,25 @@
name: Release

on:
workflow_dispatch: {}
workflow_dispatch:
inputs:
dryRun:
type: boolean
description: "Dry-Run"
default: false

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

jobs:
publish:
# Only on main repository (don't release on forks)
if: github.repository_owner == 'wetransform-os'

uses: wetransform/gha-workflows/.github/workflows/gradle-library-publish.yml@9264b26e1baa46d2ef3c860cd479bfae76ee12a3 # v2.5.1
with:
semantic-release-dryrun: ${{ inputs.dryRun }}
expect-tests: false
java-version: 17
multi-module: true
Expand Down

0 comments on commit 6381e7e

Please sign in to comment.