add build step

This commit is contained in:
2025-03-14 20:43:18 -05:00
parent 3ddce86e64
commit 4f826e8964
2 changed files with 8 additions and 2 deletions

View File

@@ -23,13 +23,16 @@ jobs:
type=ref,event=tag type=ref,event=tag
images: ${{ vars.REPOSITORY_HOST }}/${{ gitea.repository }} images: ${{ vars.REPOSITORY_HOST }}/${{ gitea.repository }}
- name: Log Into Container Registry - name: Log into Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ${{ vars.REPOSITORY_HOST }} registry: ${{ vars.REPOSITORY_HOST }}
username: ${{ gitea.actor }} username: ${{ gitea.actor }}
password: ${{ secrets.REPOSITORY_TOKEN }} password: ${{ secrets.REPOSITORY_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and Push Image - name: Build and Push Image
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:

View File

@@ -23,13 +23,16 @@ jobs:
type=ref,event=tag type=ref,event=tag
images: ${{ vars.REGISTRY_HOST }}/images images: ${{ vars.REGISTRY_HOST }}/images
- name: Log Into Container Registry - name: Log into Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ${{ vars.REGISTRY_HOST }} registry: ${{ vars.REGISTRY_HOST }}
username: ${{ vars.REGISTRY_USER }} username: ${{ vars.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_SECRET }} password: ${{ secrets.REGISTRY_SECRET }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and Push Image - name: Build and Push Image
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with: