aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/dockerfile.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/dockerfile.yaml')
-rw-r--r--.github/workflows/dockerfile.yaml39
1 files changed, 0 insertions, 39 deletions
diff --git a/.github/workflows/dockerfile.yaml b/.github/workflows/dockerfile.yaml
deleted file mode 100644
index 3d2435d..0000000
--- a/.github/workflows/dockerfile.yaml
+++ /dev/null
@@ -1,39 +0,0 @@
-permissions:
- contents: read
-on:
- push:
- branches: [master]
- pull_request:
-
-concurrency:
- group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
- cancel-in-progress: true
-name: dockerfile
-jobs:
- pseudonyms:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: true
- matrix:
- crate:
- - pseudonyms
- - warden
- - configuration
- - router
- - rule-executor
- name: build / ${{ matrix.crate }}
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: true
- - name: set up docker buildx
- uses: docker/setup-buildx-action@v3
- - name: build # and push
- uses: docker/build-push-action@v6
- with:
- push: false
- context: .
- file: crates/${{ matrix.crate }}/Dockerfile
- tags: warden/${{ matrix.crate }}:latest
- cache-from: type=gha
- cache-to: type=gha,mode=max