From ef163aaceedb3ee06cea3c4a8b72124dc23cbb1f Mon Sep 17 00:00:00 2001 From: Sven Nobis Date: Wed, 14 Jun 2023 18:10:36 +0200 Subject: [PATCH] Added steampipe workflow to build the steampipe plugin image and publish it to Google Container Registry --- .github/workflows/registry-publish.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/registry-publish.yml diff --git a/.github/workflows/registry-publish.yml b/.github/workflows/registry-publish.yml new file mode 100644 index 0000000..9337ade --- /dev/null +++ b/.github/workflows/registry-publish.yml @@ -0,0 +1,11 @@ +name: Build and Deploy OCI Image + +on: + push: + tags: + - 'v*' + +jobs: + registry_publish_workflow: + uses: turbot/steampipe-workflows/.github/workflows/registry-publish.yml@main + secrets: inherit \ No newline at end of file