Skip to content

test call chain

test call chain #2

Workflow file for this run

name: 'Tag and Deploy Site'

Check failure on line 1 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

Invalid `steps` value - steps should be list of `uses` or `run` items
on:
push:
paths:
- .github/workflows/release.yml
jobs:
tag_site:
name: Tag Site
uses: CMSGov/dpc-app/.github/workflows/tag_release.yml@jd/dpc-4433-gha-deploy-static
with:
repo_ref: main
secrets: inherit
test_outputs:
name: Verifying Output
runs-on: ubuntu-latest
needs: tag_site
steps:
name: Verify output
env:
OUTPUT: ${{ needs.tag_site.outputs.next_rev }}
run: echo $OUTPUT
deploy:
name: Deploy to staging
needs: tag_site
uses: .github/workflows/fake_deploy.yml@jd/dpc-4433-gha-deploy-static
with:
target_environment: staging
static_repo_ref: ${{ needs.tag_site.outputs.next_rev }}