Skip to content

Commit

Permalink
Update repo uri
Browse files Browse the repository at this point in the history
  • Loading branch information
alerman committed Dec 11, 2023
1 parent 6ad2912 commit 5b658f2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:

# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
env:
REGISTRY: ghcr.io
IMAGE_NAME: datawave-stack-docker-images
REGISTRY: ghcr.io/nationalsecurityagency
IMAGE_NAME: datawave-stack
JAVA_VERSION: '11'
JAVA_DISTRIBUTION: 'zulu' #This is the default on v1 of the action for 1.8

Expand Down Expand Up @@ -45,19 +45,19 @@ jobs:
with:
context: datawave-base/
push: true
tags: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/base:${{ github.sha }}"
tags: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-base:${{ github.sha }}"
labels: ${{ steps.meta.outputs.labels }}
- name: Build and push Docker hadoop image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: datawave-hadoop/
push: true
tags: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/hadoop:${{ github.sha }}"
tags: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-hadoop:${{ github.sha }}"
labels: ${{ steps.meta.outputs.labels }}
- name: Build and push Docker accumulo image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: datawave-accumulo/
push: true
tags: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/accumulo:${{ github.sha }}"
tags: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-accumulo:${{ github.sha }}"
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 5b658f2

Please sign in to comment.