Skip to content

Commit

Permalink
Remove User Flows for Perf Deploy (#1144)
Browse files Browse the repository at this point in the history
* updated workflows, will try to deploy

* [skip ci] why is userflows running at all?

* [skip ci] trying if dev is not a string

* [skip ci] trying syntax suggestion on https://docs.github.com/en/actions/learn-github-actions/expressions

* [skip ci] trying if dev is not a string

* [skip ci] trying syntax suggestion on https://docs.github.com/en/actions/learn-github-actions/expressions

* [skip ci] updated user flows

* [skip ci] purposeful breaking change

* running tests

* [skip ci] pizza cache

* removed pizza cache
  • Loading branch information
ldraney authored Mar 21, 2023
1 parent bf7537e commit 84306b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:

run-user-flows:
needs: [run-deployment]
if: ${{ inputs.environment }} == "dev"
if: ${{ inputs.environment == 'dev' }}
uses: ./.github/workflows/user_flows.yml
with:
environment: "${{ inputs.environment }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/user_flows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
run-user-flows:
runs-on: ubuntu-latest
if: ${{ inputs.environment }} == "dev"
if: ${{ inputs.environment == 'dev' }}
steps:
- name: Configure AWS Credentials
uses: aws-actions/[email protected]
Expand Down

0 comments on commit 84306b0

Please sign in to comment.