Skip to content

updated authorized groups #225

updated authorized groups

updated authorized groups #225

Workflow file for this run

name: Main workflow
on:
push:
release:
types: [published]
workflow_dispatch:
jobs:
call-test-configuration:
name: Test Dashboard Configuration
uses: ./.github/workflows/tests.yaml
call-deploy-configuration-to-dev:

Check failure on line 14 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / Main workflow

Invalid workflow file

The workflow is not valid. .github/workflows/main.yaml (Line: 14, Col: 3): Error calling workflow 'vansterzzz/sso-dashboard-configuration/.github/workflows/google-deploy.yaml@6eb6fc6f3610ccd80f3d537c71fc319b21bd8f66'. The nested job 'deployment' is requesting 'id-token: write', but is only allowed 'id-token: none'.
name: Deploy to Development
if: github.event_name == 'push' && github.ref_name == 'master'
needs: call-test-configuration
uses: ./.github/workflows/google-deploy.yaml
with:
environment: development
secrets: inherit
call-deploy-configuration-to-prod:
name: Deploy to Production
if: github.event_name == 'release'
needs: call-test-configuration
uses: ./.github/workflows/google-deploy.yaml
with:
environment: production
secrets: inherit