Skip to content

Release to Cloud

Release to Cloud #2

name: Release internal patch
on:
workflow_dispatch:
inputs:
version_number:
description: "The release version number (i.e. 1.0.0b1)"
type: string
required: true
sha:
description: "The sha to use (leave empty to use latest on main)"
type: string
required: false
package_test_command:
description: "Package test command"
type: string
default: "python -c \"import dbt.adapters.redshift\""
required: true
defaults:
run:
shell: "bash"
env:
PYTHON_TARGET_VERSION: 3.11
jobs:
invoke-reusable-workflow:

Check failure on line 28 in .github/workflows/release-internal.yml

View workflow run for this annotation

GitHub Actions / Release internal patch

Invalid workflow file

The workflow is not valid. .github/workflows/release-internal.yml (Line: 28, Col: 3): Error calling workflow 'VersusFacit/dbt-release/.github/workflows/internal-archive-release.yml@main'. The workflow is requesting 'id-token: read', but is only allowed 'id-token: none'.
name: "Build and Release Internally"
uses: "VersusFacit/dbt-release/.github/workflows/internal-archive-release.yml@main"
with:
version_number: "${{ inputs.version_number }}"
package_test_command: "${{ inputs.package_test_command }}"
dbms_name: "redshift"
sha: "${{ inputs.sha }}"
secrets: "inherit"