update storing #60
This file contains hidden or 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: Build CAPI VM image with manual input | |
| on: | |
| push: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: k8s version | |
| required: true | |
| type: string | |
| default: '1.33.1' | |
| tag: | |
| description: ck8s capi version | |
| required: true | |
| type: string | |
| default: '0.8' | |
| env: | |
| PACKER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| jobs: | |
| build-azure-image: | |
| uses: ./.github/workflows/build-azure-capi-image.yml | |
| with: | |
| version: ${{ inputs.version || '1.33.1' }} | |
| tag: ${{ inputs.tag || '0.8' }} | |
| secrets: inherit | |
| build-openstack-image: | |
| uses: ./.github/workflows/build-openstack-capi-image.yml | |
| with: | |
| version: ${{ inputs.version || '1.33.1' }} | |
| tag: ${{ inputs.tag || '0.8' }} | |
| store-openstack-image-elastx: | |
| uses: ./.github/workflows/store-openstack-capi-image-elastx.yml | |
| needs: build-openstack-image | |
| with: | |
| version: ${{ inputs.version || '1.33.1' }} | |
| tag: ${{ inputs.tag || '0.8' }} |