Skip to content

Commit

Permalink
Release med workflow dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsladek committed Jul 6, 2023
1 parent d1d2f95 commit ef28039
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release_jakarta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
tags:
- "*-jakarta"
workflow_dispatch:
inputs:
tag:
required: true
type: string
description: 'Versjon tag (x.y.z). -jakarta postfix legges inn automatisk.'

jobs:
release:
Expand All @@ -12,6 +17,6 @@ jobs:
packages: write
uses: navikt/fp-gha-workflows/.github/workflows/release-feature.yml@main
with:
release-version: ${{ github.ref_name }}
release-version: ${{ (inputs.tag && '-jakarta') || github.ref_name }}
release-branch: 'jakarta_ee9'
secrets: inherit

0 comments on commit ef28039

Please sign in to comment.