Skip to content

Commit

Permalink
Update cicd_manual_publish-starter.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolina authored Oct 30, 2024
1 parent 13098f4 commit 5b58bee
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/cicd_manual_publish-starter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
options:
- 'full'
- 'empty'
old-assets:
description: 'Include Old Assets?'
required: true
type: boolean
changelog:
description: 'Changes description'
required: true
Expand All @@ -28,7 +32,7 @@ env:
EMPTY_STARTER_TOKEN: ${{ secrets.DOT_EMPTY_STARTER_ACCESS_TOKEN }}
FULL_STARTER_URL: ${{ vars.DOT_STARTER_URL }}
FULL_STARTER_TOKEN: ${{ secrets.DOT_STARTER_ACCESS_TOKEN }}
DOWNLOAD_ENDPOINT: api/v1/maintenance/_downloadStarterWithAssets?oldAssets=false
DOWNLOAD_ENDPOINT: api/v1/maintenance/_downloadStarterWithAssets?oldAssets=${{ github.event.inputs.old-assets }}

jobs:
get-starter:
Expand Down Expand Up @@ -153,7 +157,7 @@ jobs:
echo "::endgroup::"
update-pom:
if: ${{ github.event.inputs.type == 'empty' && github.event.inputs.dry-run == false }}
if: ${{ github.event.inputs.type == 'empty' && github.event.inputs.dry-run == 'false' }}
needs: [ deploy-artifacts ]
runs-on: ubuntu-20.04
environment: starter
Expand Down Expand Up @@ -204,7 +208,7 @@ jobs:
needs: [ deploy-artifacts ] #, update-pom
runs-on: ubuntu-20.04
environment: starter
if: always() && github.event.inputs.dry-run == false
if: always() && github.event.inputs.dry-run == 'false'
steps:

- uses: actions/checkout@v4
Expand Down

0 comments on commit 5b58bee

Please sign in to comment.