mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 21:21:44 +00:00
22 lines
438 B
YAML
22 lines
438 B
YAML
name: Build Standalone on Release
|
|
on:
|
|
push:
|
|
tags:
|
|
- v[1-9].*
|
|
|
|
jobs:
|
|
build-validation:
|
|
name: Build Test
|
|
uses: ./.github/workflows/test.yaml
|
|
build:
|
|
name: Build and Upload Package
|
|
uses: ./.github/workflows/build-and-publish-standalone.yaml
|
|
needs:
|
|
- build-validation
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
id-token: write
|
|
with:
|
|
CI_BUILD_TAG: ${{github.ref_name}}
|