Skip to content

Zowe CLI Bundle All #1103

Zowe CLI Bundle All

Zowe CLI Bundle All #1103

name: Zowe CLI Bundle All
on:
pull_request:
paths-ignore:
- '.github/workflows/zowe-cli-deploy-*.yaml'
- 'scripts/deploy-*.js'
schedule:
- cron: '0 0 * * *'
jobs:
build-v1-lts:

Check failure on line 12 in .github/workflows/zowe-cli-bundle-all.yaml

View workflow run for this annotation

GitHub Actions / Zowe CLI Bundle All

Invalid workflow file

The workflow is not valid. .github/workflows/zowe-cli-bundle-all.yaml (Line: 12, Col: 3): Error calling workflow 'zowe/zowe-cli-standalone-package/.github/workflows/zowe-cli-bundle.yaml@07dfd5cdc75b06d1c3470f9ae5cd1f1088cb914c'. The nested job 'build' is requesting 'id-token: write', but is only allowed 'id-token: none'.
if: ${{ github.event_name != 'pull_request' || startsWith(github.head_ref, 'v1') }}
uses: ./.github/workflows/zowe-cli-bundle.yaml
permissions:
pull-requests: write
secrets:
JF_ARTIFACTORY_TOKEN: ${{ secrets.JF_ARTIFACTORY_TOKEN }}
with:
dry-run: ${{ github.event_name != 'schedule' }}
package-tag: zowe-v1-lts
release-type: snapshot
build-v2-lts:
if: ${{ github.event_name != 'pull_request' || startsWith(github.head_ref, 'v2') }}
uses: ./.github/workflows/zowe-cli-bundle.yaml
permissions:
pull-requests: write
secrets:
JF_ARTIFACTORY_TOKEN: ${{ secrets.JF_ARTIFACTORY_TOKEN }}
with:
dry-run: ${{ github.event_name != 'schedule' }}
package-tag: zowe-v2-lts
release-type: snapshot
build-v3-lts:
if: ${{ github.event_name != 'pull_request' || startsWith(github.head_ref, 'v3') }}
uses: ./.github/workflows/zowe-cli-bundle.yaml
permissions:
pull-requests: write
secrets:
JF_ARTIFACTORY_TOKEN: ${{ secrets.JF_ARTIFACTORY_TOKEN }}
with:
dry-run: ${{ github.event_name != 'schedule' }}
package-tag: zowe-v3-lts
release-type: snapshot
# build-next:
# uses: ./.github/workflows/zowe-cli-bundle.yaml
# permissions:
# pull-requests: write
# secrets:
# JF_ARTIFACTORY_TOKEN: ${{ secrets.JF_ARTIFACTORY_TOKEN }}
# with:
# dry-run: ${{ github.event_name != 'schedule' }}
# package-tag: next
# release-type: snapshot