Skip to content

Commit

Permalink
Fix attempt damn bash x4
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadorequest committed May 29, 2021
1 parent 7165886 commit 5611822
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deploy-vercel-production.yml
Expand Up @@ -72,7 +72,6 @@ on:

env:
STAGE: production
CYPRESS_DOCKER_VERSION: '7.4.0' # Should match the version installed in package.json

jobs:
# Configures the deployment environment, install dependencies (like node, npm, etc.) that are requirements for the upcoming jobs
Expand Down Expand Up @@ -270,7 +269,7 @@ jobs:
runs-on: ubuntu-18.04
# Docker image with Cypress pre-installed
# https://github.com/cypress-io/cypress-docker-images/tree/master/included
container: "cypress/included:${{ env.CYPRESS_DOCKER_VERSION }}"
container: cypress/included:7.4.0
needs: await-for-vercel-deployment
timeout-minutes: 20 # Limit current job timeout https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes
steps:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/deploy-vercel-staging.yml
Expand Up @@ -72,7 +72,6 @@ on:

env:
STAGE: staging
CYPRESS_DOCKER_VERSION: 7.4.0 # Should match the version installed in package.json

jobs:
# Configures the deployment environment, install dependencies (like node, npm, etc.) that are requirements for the upcoming jobs
Expand Down Expand Up @@ -318,7 +317,7 @@ jobs:
runs-on: ubuntu-18.04
# Docker image with Cypress pre-installed
# https://github.com/cypress-io/cypress-docker-images/tree/master/included
container: ${{ env.CYPRESS_DOCKER_VERSION }}
container: cypress/included:7.4.0
needs: await-for-vercel-deployment
timeout-minutes: 20 # Limit current job timeout https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes
steps:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/deploy-vercel-storybook.yml
Expand Up @@ -52,7 +52,6 @@ on:

env:
STAGE: staging
CYPRESS_DOCKER_VERSION: '7.4.0' # Should match the version installed in package.json

jobs:
# Configures the deployment environment, install dependencies (like node, npm, etc.) that are requirements for the upcoming jobs
Expand Down Expand Up @@ -193,7 +192,7 @@ jobs:
runs-on: ubuntu-18.04
# Docker image with Cypress pre-installed
# https://github.com/cypress-io/cypress-docker-images/tree/master/included
container: "cypress/included:${{ env.CYPRESS_DOCKER_VERSION }}"
container: cypress/included:7.4.0
needs: await-for-vercel-deployment
steps:
- uses: actions/checkout@v1 # Get last commit pushed - See https://github.com/actions/checkout
Expand Down

1 comment on commit 5611822

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.