diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 79387ad..315e70b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,9 +21,17 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + - + name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build Image uses: docker/build-push-action@v6 with: - push: false - tags: user/app:latest \ No newline at end of file + push: true + platforms: linux/amd64,linux/arm64 + tags: inventree/inventree-caddy:latest, inventree/inventree-caddy:${{ github.event.release.tag_name }}