Skip to content

Commit

Permalink
[Issue #1919] Deploying to (dev, or staging) fails because trying to …
Browse files Browse the repository at this point in the history
…release the same image tag twice part 1 (#1929)

## Summary
Fixes #{ISSUE}

### Time to review: __x mins__

## Changes proposed
* temporarily remove "staging" from the frontend deployment matrix to
unblock others

## Context for reviewers
> The staging deploy fails because both dev and staging try to release
the same tag

## Additional information
See #1919 for more detail
  • Loading branch information
aplybeah authored May 6, 2024
1 parent 1a1eee0 commit 4cdd702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: ./.github/workflows/deploy.yml
strategy:
matrix:
envs: ${{ github.event_name == 'release' && fromJSON('["prod"]') || github.ref_name == 'main' && fromJSON('["dev", "staging"]') || fromJSON('["dev"]') }}
envs: ${{ github.event_name == 'release' && fromJSON('["prod"]') || github.ref_name == 'main' && fromJSON('["dev"]') || fromJSON('["dev"]') }} # temporarily removing staging from matrix. See: https://github.com/HHS/simpler-grants-gov/issues/1919
with:
app_name: "frontend"
environment: ${{ matrix.envs }}

0 comments on commit 4cdd702

Please sign in to comment.