Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/projects-refresh-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,13 @@ jobs:
type=ref,event=tag
type=raw,value=latest

- name: Build and push Docker image
uses: docker/build-push-action@v5

- uses: depot/setup-action@v1
- name: Build projects-refresh image (no push)
uses: depot/build-push-action@v1
with:
project: p9zgmm1k3n
token: ${{ secrets.DEPOT_TOKEN }}
context: .
file: ./Dockerfile_bg_projects_refresh
push: true
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/projects_refresh_image_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
paths:
- background/projects-refresh-service/**
- Dockerfile_bg_projects_refresh
- .github/workflows/projects_refresh_image_build.yml
workflow_dispatch: {}

permissions:
Expand All @@ -24,12 +25,15 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- uses: depot/setup-action@v1
- name: Build projects-refresh image (no push)
uses: depot/build-push-action@v5
uses: depot/build-push-action@v1
with:
project: p9zgmm1k3n
token: ${{ secrets.DEPOT_TOKEN }}
context: .
file: Dockerfile_bg_projects_refresh
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
push: false
tags: ghcr.io/diggerhq/digger/projects-refresh-service:ci-test
build-args: |
Expand Down
Loading