From 310fa73e7370c96248453bd32da7409488ce3538 Mon Sep 17 00:00:00 2001 From: Cody Jackson Date: Mon, 30 Sep 2024 16:11:56 -0700 Subject: [PATCH] Add publishing to gh-pages --- .github/workflows/build.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 00000000..50bdfadf --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,23 @@ +name: Build and Release Extension Charts + +on: + workflow_dispatch: + release: + types: [released] + +defaults: + run: + shell: bash + working-directory: ./ + +jobs: + build-extension-charts: + uses: rancher/dashboard/.github/workflows/build-extension-charts.yml@master + permissions: + actions: write + contents: write + deployments: write + pages: write + with: + target_branch: gh-pages + tagged_release: ${{ github.ref_name }} \ No newline at end of file