Skip to content

Commit

Permalink
ci/cd: add docker image names
Browse files Browse the repository at this point in the history
  • Loading branch information
dulvui committed May 28, 2024
1 parent ed02e9b commit f8c21c6
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ on:

env:
PROJECT_NAME: sfscon-backend
DOCKER_IMAGE: ghcr.io/${{ github.repository }}/sfscon-backend
DOCKER_IMAGE_CONFERENCES: ghcr.io/${{ github.repository }}/sfscon-conferences
DOCKER_IMAGE_PUSH_NOTIFICATION: ghcr.io/${{ github.repository }}/sfscon-push-notifications
DOCKER_IMAGE_TELEGRAM: ghcr.io/${{ github.repository }}/sfscon-telegram


jobs:
deploy-test:
Expand All @@ -26,7 +29,9 @@ jobs:
working-directory: ${{ env.WORKING_DIRECTORY }}
env:
X_SERVER_PORT: ${{ env.SERVER_PORT }}
X_DOCKER_IMAGE: ${{ env.DOCKER_IMAGE }}
X_DOCKER_IMAGE_CONFERENCES: ${{ env.DOCKER_IMAGE_CONFERENCES }}
X_DOCKER_IMAGE_PUSH_NOTIFICATION: ${{ env.DDOCKER_IMAGE_PUSH_NOTIFICATION }}
X_DOCKER_IMAGE_TELEGRAM: ${{ env.DOCKER_IMAGE_TELEGRAM }}
X_DOCKER_TAG: ${{ env.DOCKER_TAG }}

- name: Build and push images
Expand Down Expand Up @@ -64,7 +69,9 @@ jobs:
# working-directory: ${{ env.WORKING_DIRECTORY }}
# env:
# X_SERVER_PORT: ${{ env.SERVER_PORT }}
# X_DOCKER_IMAGE: ${{ env.DOCKER_IMAGE }}
# X_DOCKER_IMAGE_CONFERENCES: ${{ env.DOCKER_IMAGE_CONFERENCES }}
# X_DOCKER_IMAGE_PUSH_NOTIFICATION: ${{ env.DDOCKER_IMAGE_PUSH_NOTIFICATION }}
# X_DOCKER_IMAGE_TELEGRAM: ${{ env.DOCKER_IMAGE_TELEGRAM }}
# X_DOCKER_TAG: ${{ env.DOCKER_TAG }}
#
# - name: Build and push images
Expand Down

0 comments on commit f8c21c6

Please sign in to comment.