mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 21:21:44 +00:00
* chore: add building catalog GA Signed-off-by: Jack Yu <jack.yu@suse.com> * feat: should include prerelease Signed-off-by: Jack Yu <jack.yu@suse.com> --------- Signed-off-by: Jack Yu <jack.yu@suse.com>
81 lines
2.7 KiB
YAML
81 lines
2.7 KiB
YAML
name: Build and release Extension Catalog Image to registry
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
registry_target:
|
|
required: true
|
|
type: string
|
|
repository_name:
|
|
required: true
|
|
type: string
|
|
registry_user:
|
|
required: true
|
|
type: string
|
|
outputs:
|
|
build-extension-catalog-job-status:
|
|
value: ${{ jobs.build-extension-catalog.outputs.build-status }}
|
|
|
|
jobs:
|
|
build-and-push-extension-catalog:
|
|
name: Build container image
|
|
if: github.ref_type == 'tag' || (github.ref == 'refs/heads/main' && github.event_name != 'pull_request')
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: write
|
|
contents: read
|
|
packages: write
|
|
id-token: write
|
|
outputs:
|
|
build-status: ${{ job.status }}
|
|
steps:
|
|
- name: Read Secrets
|
|
uses: rancher-eio/read-vault-secrets@main
|
|
with:
|
|
secrets: |
|
|
secret/data/github/repo/${{ github.repository }}/dockerhub/rancher/credentials username | DOCKER_USERNAME ;
|
|
secret/data/github/repo/${{ github.repository }}/dockerhub/rancher/credentials password | DOCKER_PASSWORD ;
|
|
|
|
- name: Checkout repository (normal flow)
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Enable Corepack
|
|
run: corepack enable
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config user.name 'github-actions[bot]'
|
|
git config user.email 'github-actions[bot]@users.noreply.github.com'
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ env.DOCKER_USERNAME }}
|
|
password: ${{ env.DOCKER_PASSWORD }}
|
|
|
|
- name: Setup Helm
|
|
uses: azure/setup-helm@v3
|
|
with:
|
|
version: v3.8.0
|
|
|
|
- name: Setup Nodejs with yarn caching
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: yarn
|
|
|
|
- name: Install dependencies
|
|
run: yarn
|
|
|
|
- name: Build and push UI image
|
|
run: |
|
|
publish="yarn publish-pkgs -c -r ${{ inputs.registry_target }} -o ${{ inputs.registry_user }}"
|
|
$publish
|
|
|
|
REPO_NAME=$(echo "${{ github.repository }}" | cut -d'/' -f2)
|
|
IMAGE_VERSION=$(cat package.json | jq .version | sed 's/"//g')
|
|
FULL_IMAGE_NAME=$(echo ${{ inputs.registry_target }}/${{ inputs.registry_user }}/ui-extension-$REPO_NAME:$IMAGE_VERSION)
|
|
IMAGE_ID=$(docker inspect --format='{{.Id}}' $FULL_IMAGE_NAME)
|
|
|
|
docker tag $IMAGE_ID ${{ inputs.registry_target }}/${{ inputs.registry_user }}/${{ inputs.repository_name }}:$IMAGE_VERSION
|
|
docker push ${{ inputs.registry_target }}/${{ inputs.registry_user }}/${{ inputs.repository_name }}:$IMAGE_VERSION |