chore: Use multi-arch images for CP4D #110
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Close | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- main | |
jobs: | |
destroy: | |
if: ${{ !contains( github.event.pull_request.labels.*.name, 'skip ci' ) }} | |
runs-on: ubuntu-latest | |
container: icr.io/continuous-delivery/pipeline/pipeline-base-ubi:3.6 | |
env: | |
HOME: /root | |
PIPELINE_DEBUG: 1 | |
IBM_CLOUD_API_KEY: ${{ secrets.IBM_CLOUD_API_KEY }} | |
environment: dev | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify destroy | |
run: tests/postbuild/cluster.sh --delete -t ibmcloud -n "gitops-${GITHUB_HEAD_REF:0:25}" --apikey "${IBM_CLOUD_API_KEY}" |