diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6aace2f..7d82cfb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -57,9 +57,13 @@ jobs: [ "${GITHUB_EVENT_NAME}" == 'release' ] && echo "tag=${GITHUB_REF##*/}" >> $GITHUB_ENV || true [ "${GITHUB_EVENT_NAME}" == 'push' ] && echo "tag=latest" >> $GITHUB_ENV || true + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Build and push image uses: docker/build-push-action@v6 with: context: . push: true + sbom: true tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.tag }}