Skip to content

Commit

Permalink
fix: added the correct targets
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Oct 15, 2024
1 parent f0b4de4 commit de059fa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/push-edx-platform-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
strategy:
matrix:
variant:
- { tag: 'lms_dev', port: '8000' }
- { tag: 'cms_dev', port: '8000' }
- { tag: 'cms', port: '8010' }
- { tag: 'lms', port: '8010' }
- { tag: 'lms_dev', port: '8000', target: 'development' }
- { tag: 'cms_dev', port: '8000', target: 'development' }
- { tag: 'cms', port: '8010', target: 'production'}
- { tag: 'lms', port: '8010', target: 'production' }

steps:
- name: Get tag name
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
with:
file: ./dockerfiles/edx-platform.Dockerfile
push: true
target: dev
target: ${{ matrix.variant.target }}
build-args: |
SERVICE_VARIANT: ${{ matrix.variant.tag }}
SERVICE_PORT: ${{ matrix.variant.port }}
Expand Down

0 comments on commit de059fa

Please sign in to comment.