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