Skip to content

Commit

Permalink
chore(ci): Uncomment deploy environments. (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
fergmac authored Nov 5, 2024
1 parent c9d4040 commit bb0a5f2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ on:
jobs:
init:
name: Initialize
environment: ${{ inputs.environment }}
runs-on: ubuntu-latest
steps:
- name: Initialize
Expand Down Expand Up @@ -74,7 +75,7 @@ jobs:
database:
name: Database
needs: init
# environment: ${{ inputs.environment }}
environment: ${{ inputs.environment }}
runs-on: ubuntu-latest
steps:
- name: Database
Expand All @@ -100,7 +101,7 @@ jobs:
backend:
name: Backend
needs: [ init, database ]
# environment: ${{ inputs.environment }}
environment: ${{ inputs.environment }}
runs-on: ubuntu-latest
steps:
- name: Deploy Backend
Expand Down Expand Up @@ -145,7 +146,7 @@ jobs:
frontend:
name: Frontend
needs: [ init, database, backend ]
# environment: ${{ inputs.environment }}
environment: ${{ inputs.environment }}
runs-on: ubuntu-latest
steps:
- name: Deploy Frontend
Expand Down

0 comments on commit bb0a5f2

Please sign in to comment.