Skip to content

Workflow file for this run

name: 'Tag and Deploy Site'
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

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be prefixed with format 'owner/repository/' or './' for local workflows
with:
target_environment: staging
static_repo_ref: ${{ needs.tag_site.outputs.next_rev }}