Skip to content

Commit 4a64f4c

Browse files
committed
add gcp publish workflow
1 parent bc6227b commit 4a64f4c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/gcp-publish.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: GCP Image Publish
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
image_name:
7+
description: Comma-separated list of image names to publish to GCP. The images must already exist in GCP under the almalinux-dev-images-469421 project.
8+
required: true
9+
default: ''
10+
11+
jobs:
12+
publish-image:
13+
name: Publish Images to almalinux-cloud GCP Project (prod)
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v5
17+
18+
- name: test
19+
run: echo "Publishing image ${{ inputs.image_name }}"
20+
shell: bash

0 commit comments

Comments
 (0)