mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 21:21:44 +00:00
35 lines
667 B
YAML
35 lines
667 B
YAML
name: Build and Release Extension Charts
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [released]
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
working-directory: ./
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Run tests
|
|
uses: ./.github/actions/lint
|
|
build-extension-charts:
|
|
needs:
|
|
- lint
|
|
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 }}
|