Skip to content

Commit

Permalink
add strings
Browse files Browse the repository at this point in the history
  • Loading branch information
dakinggg committed Oct 7, 2023
1 parent 6c6a80b commit 9b26b23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ jobs:
if [ "${{ github.event_name }}" == "push" ]; then
echo "Triggered by push event."
PROD_REPO="mosaicml/llm-foundry"
IMAGE_TAG=${PROD_REPO}:${{matrix.name}}-${GIT_SHA},${PROD_REPO}:${{matrix.name}}-latest
IMAGE_TAG="${PROD_REPO}:${{matrix.name}}-${GIT_SHA},${PROD_REPO}:${{matrix.name}}-latest"
IMAGE_CACHE="${PROD_REPO}:${{matrix.name}}-buildcache"
elif [ "${{ github.event_name }}" == "pull_request" ]; then
echo "Triggered by pull_request event."
STAGING_REPO="mosaicml/ci-staging"
IMAGE_TAG=${STAGING_REPO}:${{matrix.name}}-${GIT_SHA}
IMAGE_TAG="${STAGING_REPO}:${{matrix.name}}-${GIT_SHA}""
IMAGE_CACHE="${STAGING_REPO}:${{matrix.name}}-buildcache"
- name: Build and Push the Docker Image
Expand Down

0 comments on commit 9b26b23

Please sign in to comment.