Skip to content

Commit

Permalink
single env steps
Browse files Browse the repository at this point in the history
  • Loading branch information
mbyrdziak committed Jul 16, 2024
1 parent 479b2b9 commit bba6cda
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ jobs:
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && github.ref == 'refs/heads/main'
needs: deploy-dev-migrations
runs-on: ubuntu-latest
environment:
name: dev
url: https://dev.sample.com
steps:
- name: action
run: echo Deploy dev
Expand All @@ -46,9 +43,6 @@ jobs:
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && github.ref == 'refs/heads/main'
needs: deploy-dev
runs-on: ubuntu-latest
environment:
name: dev
url: https://dev.sample.com
steps:
- name: action
run: echo Deploy dev e2e
Expand All @@ -68,9 +62,6 @@ jobs:
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && github.ref == 'refs/heads/main'
needs: deploy-stage-migrations
runs-on: ubuntu-latest
environment:
name: stage
url: https://stage.sample.com
steps:
- name: action
run: echo Deploy stage
Expand All @@ -79,9 +70,6 @@ jobs:
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && github.ref == 'refs/heads/main'
needs: deploy-stage
runs-on: ubuntu-latest
environment:
name: stage
url: https://stage.sample.com
steps:
- name: action
run: echo Deploy stage e2e
Expand All @@ -101,9 +89,6 @@ jobs:
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && github.ref == 'refs/heads/main'
needs: deploy-prod-migrations
runs-on: ubuntu-latest
environment:
name: prod
url: https://prod.sample.com
steps:
- name: action
run: echo Deploy prod
Expand All @@ -112,9 +97,6 @@ jobs:
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && github.ref == 'refs/heads/main'
needs: deploy-prod
runs-on: ubuntu-latest
environment:
name: prod
url: https://prod.sample.com
steps:
- name: action
run: echo Deploy prod e2e

0 comments on commit bba6cda

Please sign in to comment.