Skip to content

cleanup

cleanup #25

Workflow file for this run

name: 'Tag and Deploy Site'
on:
workflow_dispatch:
inputs:
deploy:
description: 'Also deploy to staging?'
type: boolean
default: true
required: true
repo_ref:
description: 'Which branch or tag?'
required: true
default: 'main'
type: 'string'
push:
paths:
- .github/workflows/release.yml
jobs:
tag_repo:
name: Tag Repo
uses: CMSgov/dpc-app/.github/workflows/tag_release.yml@main

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "CMSgov/dpc-app/.github/workflows/tag_release.yml@main" : failed to fetch workflow: workflow was not found.
with:
repo_ref: ${{ inputs.repo_ref }}
secrets: inherit
deploy:
if: ${{ inputs.deploy }}
name: Deploy to Staging
needs: tag_repo
uses: ./.github/workflows/deploy.yml
with:
target_environment: staging
static_repo_ref: ${{ needs.tag_repo.outputs.tag }}
secrets: inherit