diff --git a/.github/workflows/attackbox.yml b/.github/workflows/attackbox.yml deleted file mode 100644 index 9d9d694d..00000000 --- a/.github/workflows/attackbox.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: Attackbox - -permissions: {} - -on: - push: - branches: [ main ] - paths: - - services/attackbox/** - workflow_dispatch: - -defaults: - run: - working-directory: attackbox - -jobs: - - build: - - runs-on: ubuntu-latest - permissions: - packages: write - contents: read - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Login to GHCR - id: login-ghcr - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: ./services/attackbox - platforms: linux/amd64,linux/arm64 - push: true - tags: ghcr.io/datadog/storedog/attackbox:latest - diff --git a/.github/workflows/auth.yml b/.github/workflows/auth.yml deleted file mode 100644 index 00005d02..00000000 --- a/.github/workflows/auth.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: Auth - -permissions: {} - -on: - push: - branches: [ main ] - paths: - - services/auth/** - workflow_dispatch: - -defaults: - run: - working-directory: auth - -jobs: - - build: - - runs-on: ubuntu-latest - permissions: - packages: write - contents: read - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Login to GHCR - id: login-ghcr - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: ./services/auth - platforms: linux/amd64,linux/arm64 - push: true - tags: ghcr.io/datadog/storedog/auth:latest - diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ac1879da..2f84c3ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,6 @@ on: - '[0-9]+.[0-9]+.[0-9]+' jobs: - publish_service_containers: name: Publish all images runs-on: ubuntu-latest @@ -46,8 +45,6 @@ jobs: ghcr.io/datadog/storedog/discounts ghcr.io/datadog/storedog/ads ghcr.io/datadog/storedog/ads-java - ghcr.io/datadog/storedog/attackbox - ghcr.io/datadog/storedog/auth ghcr.io/datadog/storedog/nginx ghcr.io/datadog/storedog/frontend ghcr.io/datadog/storedog/dbm @@ -65,4 +62,3 @@ jobs: done echo "All done" -