From e7b3407528df20d8b4fa4193aec94a949e17d6ae Mon Sep 17 00:00:00 2001 From: Chris Porter Date: Fri, 9 Feb 2024 14:36:13 -0500 Subject: [PATCH] Release: Delete release workflows before publishing release Signed-off-by: Chris Porter --- .github/workflows/kbs-release.yaml | 38 ------------------------------ .github/workflows/release.yml | 38 ------------------------------ 2 files changed, 76 deletions(-) delete mode 100644 .github/workflows/kbs-release.yaml delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/kbs-release.yaml b/.github/workflows/kbs-release.yaml deleted file mode 100644 index b50469372..000000000 --- a/.github/workflows/kbs-release.yaml +++ /dev/null @@ -1,38 +0,0 @@ -name: Cut KBS Release - -on: - release: - types: [published] - -jobs: - build-and-push-images: - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v4 - - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{github.actor}} - password: ${{secrets.GITHUB_TOKEN}} - - - name: Build and push kbs (With built-in CoCo AS) - uses: docker/build-push-action@v5 - with: - context: . - file: ./kbs/docker/Dockerfile - platforms: linux/amd64 - push: true - tags: ghcr.io/confidential-containers/key-broker-service:built-in-as-${{ github.ref_name }} - - - name: Build and push kbs (With the CoCo gRPC AS) - uses: docker/build-push-action@v5 - with: - context: . - file: ./kbs/docker/Dockerfile.coco-as-grpc - platforms: linux/amd64 - push: true - tags: ghcr.io/confidential-containers/key-broker-service:${{ github.ref_name }}, ghcr.io/confidential-containers/key-broker-service:latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 8ee70940d..000000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Cut Attestation Service Release - -on: - release: - types: [published] - -jobs: - build-and-push-images: - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v4 - - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{github.actor}} - password: ${{secrets.GITHUB_TOKEN}} - - - name: Build and push attestation-service - uses: docker/build-push-action@v5 - with: - context: . - file: ./attestation-service/Dockerfile.as-grpc - platforms: linux/amd64 - push: true - tags: ghcr.io/confidential-containers/attestation-service:latest, ghcr.io/confidential-containers/attestation-service:${{ github.ref_name }} - - - name: Build and push reference-value-provider-service - uses: docker/build-push-action@v5 - with: - context: . - file: ./attestation-service/Dockerfile.rvps - platforms: linux/amd64 - push: true - tags: ghcr.io/confidential-containers/reference-value-provider-service:latest, ghcr.io/confidential-containers/reference-value-provider-service:${{ github.ref_name }} \ No newline at end of file