Merge pull request 'revamp build' (#2) from feature/new-config into main
Deploy to Production / deploy-to-production (push) Has been cancelled
Build and Publish Docker Image / build-and-push (push) Failing after 36s
Restart Server / restart-server (push) Failing after 22s

Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-02-12 10:18:18 +00:00
+5 -4
View File
@@ -15,15 +15,16 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub - name: Log in to git.cashew.network registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKER_USERNAME }} registry: git.cashew.network
password: ${{ secrets.DOCKER_PASSWORD }} username: ${{ secrets.GIT_USERNAME }}
password: ${{ secrets.GIT_PASSWORD }}
- name: Build and push image - name: Build and push image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
context: . context: .
push: true push: true
tags: ${{ secrets.DOCKER_USERNAME }}/ironveil:${{ github.ref_name }} tags: ${{ secrets.GIT_USERNAME }}/ironveil:${{ github.ref_name }}