Add build and publish steps #3

Merged
chimeudeonwop merged 53 commits from feature/setup-workflow-pipeline into main 2025-11-04 18:20:11 +00:00
8 changed files with 391 additions and 2 deletions
Showing only changes of commit 440c6f088a - Show all commits

View File

@ -53,7 +53,8 @@ jobs:
GITEA_REGISTRY_URL: 'git.bepastem.com'
OWNER: ${{ gitea.actor }}
run: |
docker build -t $GITEA_REGISTRY_URL/$OWNER/my-app:latest .
#docker build -t $GITEA_REGISTRY_URL/$OWNER/my-app:latest .
docker build -t $GITEA_REGISTRY_URL/$OWNER/$IMAGE_NAME:latest .
- name: List Docker images
run: |
@ -70,8 +71,8 @@ jobs:
docker buildx build \
--platform linux/amd64 \
-t $IMAGE_NAME:latest \
-t $GITEA_REGISTRY_URL/$IMAGE_NAME:latest \
-t $GITEA_REGISTRY_URL/$OWNER/$IMAGE_NAME:latest \
#-t ${{ secrets.GITEA_REGISTRY_URL }}/$OWNER/$IMAGE_NAME:latest \
--push \
#--push \
.