From 8b4f27d2c39d1e1f5f1cc455c58800e806ee98d0 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sun, 10 Aug 2025 17:29:11 +0200 Subject: build(docker): pseudonyms --- .github/workflows/dockerfile.yaml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/dockerfile.yaml (limited to '.github/workflows/dockerfile.yaml') diff --git a/.github/workflows/dockerfile.yaml b/.github/workflows/dockerfile.yaml new file mode 100644 index 0000000..c3bac8a --- /dev/null +++ b/.github/workflows/dockerfile.yaml @@ -0,0 +1,34 @@ +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"] + 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 -- cgit v1.2.3