From 8a9cb8e65c2a8f760c0bc8d8bd40da9d14b9f3c3 Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Wed, 16 Apr 2025 19:49:22 -0400 Subject: [PATCH] I'm pretty sure Dan isn't real and they are just 3 racoons in a trench coat. (#9) Reviewed-on: https://gitea.siteworxpro.com/rrise/reloading-manager/pulls/9 Co-authored-by: Ron Rise Co-committed-by: Ron Rise --- .gitea/workflows/build.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index ce20c3d..9f011c4 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -19,6 +19,11 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 1 + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ vars.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Set up Node.js uses: actions/setup-node@v2 with: @@ -26,6 +31,8 @@ jobs: - name: Build Container uses: docker/build-push-action@v6 with: + attests: type=sbom,generator=image + platforms: linux/amd64,linux/arm64 context: ./frontend file: ./frontend/Dockerfile push: false @@ -33,6 +40,8 @@ jobs: - name: Build Container uses: docker/build-push-action@v6 with: + attests: type=sbom,generator=image + platforms: linux/amd64,linux/arm64 context: ./frontend file: ./frontend/Dockerfile push: false @@ -62,14 +71,16 @@ jobs: - name: Build Container uses: docker/build-push-action@v6 with: + attests: type=sbom,generator=image context: ./backend file: ./backend/Dockerfile + platforms: linux/amd64,linux/arm64 push: false tags: siteworxpro/backend:${{ gitea.ref_name }} - name: Build Container uses: docker/build-push-action@v6 with: - attests: type=sbom generator=image + attests: type=sbom,generator=image context: ./backend file: ./backend/Dockerfile platforms: linux/amd64,linux/arm64