Skip to content

Commit

Permalink
Merge pull request #8 from IABTechLab/tjm-UID2-2324-new-shared-java-p…
Browse files Browse the repository at this point in the history
…ackage-pipeline

Added new release pipeline
  • Loading branch information
thomasm-ttd authored Nov 28, 2023
2 parents 88953ad + ae9a4ec commit bdf37e7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release-package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release Package
run-name: ${{ format('{0}', inputs.release_type == 'Snapshot' && 'Publish pre-release' || format('Release {0}', inputs.release_type))}} Package by @${{ github.actor }}
on:
workflow_dispatch:
inputs:
release_type:
type: choice
description: 'The type of release'
options:
- Major
- Minor
- Patch
- Snapshot
publish_to_maven:
description: 'True to publish the artifacts to maven repository, false to skip the step'
default: true
required: false
type: boolean

jobs:
Package:
uses: IABTechLab/uid2-shared-actions/.github/workflows/[email protected]
with:
release_type: ${{ inputs.release_type }}
publish_to_maven: ${{ inputs.publish_to_maven }}
secrets: inherit


0 comments on commit bdf37e7

Please sign in to comment.