Skip to content

Commit 5597b8b

Browse files
authored
Update main.yml
1 parent 054ee7d commit 5597b8b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main # Trigger the workflow on pushes to the main branch
77

88
env:
9-
DOCKER_IMAGE_NAME: ivanpiskunov/sectools # Replace with your details
9+
DOCKER_IMAGE_NAME: ivanpiskunov/sectools:latest # Replace with your details
1010
DOCKER_TAG: ${{ github.sha }} # Use commit SHA as a tag, or latest for a fixed tag
1111

1212
jobs:
@@ -33,8 +33,8 @@ jobs:
3333
with:
3434
context: . # Path to your Dockerfile, '.' for current directory
3535
push: true
36-
# tags: |
37-
# ${{ env.DOCKER_IMAGE_NAME }}:${{ env.DOCKER_TAG }}
38-
# ${{ env.DOCKER_IMAGE_NAME }}:latest # Optionally push with 'latest' tag
36+
tags: |
37+
${{ env.DOCKER_IMAGE_NAME }}:${{ env.DOCKER_TAG }}
38+
${{ env.DOCKER_IMAGE_NAME }}:latest # Optionally push with 'latest' tag
3939
build-args: |
4040
# Add any build arguments here, e.g., MY_ARG=value

0 commit comments

Comments
 (0)