mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-03-20 05:56:19 -04:00
manual operator pipeline (#383)
This commit is contained in:
parent
38c1b9003c
commit
92e4e4d95a
28
.github/workflows/build-operator-manual.yml
vendored
Normal file
28
.github/workflows/build-operator-manual.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
name: Build operator manually
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
imageTag:
|
||||
description: "Container image tag"
|
||||
required: true
|
||||
default: "manual-build"
|
||||
|
||||
jobs:
|
||||
build-operator-manual:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
steps:
|
||||
- name: Check out repository
|
||||
id: checkout
|
||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||||
|
||||
- name: Build and upload constellation-node-operator container image
|
||||
uses: ./.github/actions/build_operator
|
||||
with:
|
||||
name: node-operator
|
||||
sourceDir: operators/constellation-node-operator
|
||||
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
pushTag: ${{ inputs.imageTag }}
|
Loading…
x
Reference in New Issue
Block a user