Skip to content

Commit

Permalink
Merge pull request #6077 from shaneknapp/enable-a11y-github-action
Browse files Browse the repository at this point in the history
enable a11y GitHub action
  • Loading branch information
shaneknapp authored Sep 4, 2024
2 parents 3306cbc + 2730b97 commit bdf084d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/deploy-hubs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,10 @@ jobs:
if: ${{ env.DEPLOY }}
run: |
while read deployment; do
echo "Pretending to deploy base hub image to ${deployment} :P"
echo "Depoying base hub image to ${deployment}"
hubploy --verbose deploy --timeout 30m ${deployment} hub staging
done < <(python .github/scripts/determine-hub-deployments.py --only-deploy logodev stat159 stat20 nature)
echo
done < <(python .github/scripts/determine-hub-deployments.py --only-deploy logodev stat159 stat20 nature a11y)
deploy-hubs-to-prod:
if: github.event_name == 'push' && github.ref == 'refs/heads/prod'
Expand Down Expand Up @@ -194,6 +195,7 @@ jobs:
if: ${{ env.DEPLOY }}
run: |
while read deployment; do
echo "Pretending to deploy base hub image to ${deployment} :P"
echo "Deploying base hub image to ${deployment}"
hubploy --verbose deploy --timeout 30m ${deployment} hub prod
done < <(python .github/scripts/determine-hub-deployments.py --only-deploy logodev stat159 stat20 nature)
echo
done < <(python .github/scripts/determine-hub-deployments.py --only-deploy logodev stat159 stat20 nature a11y)

0 comments on commit bdf084d

Please sign in to comment.