This commit is contained in:
parent
9bb093caad
commit
be7665d2e8
@ -24,6 +24,9 @@ jobs:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v4
|
||||
|
||||
- name: Log into registry ${{ env.REGISTRY }}
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
@ -31,7 +34,11 @@ jobs:
|
||||
username: ${{ secrets.DOCKER_USER }}
|
||||
password: ${{ secrets.DOCKER_PASS }}
|
||||
|
||||
- name: Build and push Docker image
|
||||
- name: Build Docker Image
|
||||
run: docker build -t ${{ env.IMAGE_NAME }} .
|
||||
|
||||
- name: Push Docker Image
|
||||
run: docker push ${{ env.REGISTRY }}/${{ secrets.DOCKER_USER }}/${{ env.IMAGE_NAME }}:${{ env.RELEASE }}
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user