Skip to content

TierQuotaDefinitions are not deleted (#330) #19

TierQuotaDefinitions are not deleted (#330)

TierQuotaDefinitions are not deleted (#330) #19

Workflow file for this run

name: Publish Consumer API Container Image
on:
push:
tags:
- "capi/*"
jobs:
publish-capi-container-image:
name: Publish Consumer API Container Image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install script dependencies
run: npm install --prefix ./.ci
- name: Docker Login
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract version from git tag
id: extract-version-from-git-tag
run: echo "VERSION=$(./.ci/extractVersionFromGitTag.ts)" >> $GITHUB_OUTPUT
env:
GIT_TAG: ${{ github.ref_name }}
- name: Build Container Image
run: ./.ci/capi/buildContainerImage.ts
env:
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }}
- name: Push Container Image
run: ./.ci/capi/pushContainerImage.ts
env:
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }}