Skip to content

Commit

Permalink
fix: Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-castro committed Nov 10, 2024
1 parent 186a049 commit b223512
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-and-push-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Build and push dev images
uses: .github/workflows/build-and-push.yml
with:
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/build-and-push-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ on:

jobs:
build:
uses: .github/workflows/build-and-push.yml
with:
environment: "prod"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Build and push prod images
uses: .github/workflows/build-and-push.yml
with:
environment: "prod"

0 comments on commit b223512

Please sign in to comment.