mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 05:01:43 +00:00
29 lines
548 B
YAML
29 lines
548 B
YAML
name: Build and Release Extension Catalog
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
working-directory: ./
|
|
|
|
jobs:
|
|
build-extension-catalog:
|
|
uses: rancher/dashboard/.github/workflows/build-extension-catalog.yml@master
|
|
permissions:
|
|
actions: write
|
|
contents: read
|
|
packages: write
|
|
with:
|
|
registry_target: ghcr.io
|
|
registry_user: ${{ github.actor }}
|
|
secrets:
|
|
registry_token: ${{ secrets.GITHUB_TOKEN }}
|