Revert 508 check as its successful, try straight dpc copy of sonarqub… #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Tag and Deploy Static Site' | |
on: | |
push: | |
# 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' | |
jobs: | |
tag_repo: | |
name: Tag Repo | |
uses: CMSgov/dpc-app/.github/workflows/tag_release.yml@main | |
with: | |
# repo_ref: ${{ inputs.repo_ref }} | |
repo_ref: 'carl/BCDA-8636-add-github-actions-deploy' | |
secrets: inherit | |
deploy: | |
# if: ${{ inputs.deploy }} | |
if: true | |
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 |