TierQuotaDefinitions are not deleted (#330) #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Admin UI Container Image | |
on: | |
push: | |
tags: | |
- "aui/*" | |
jobs: | |
publish-aui-container-image: | |
name: Publish Admin UI 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 Image | |
run: ./.ci/aui/buildContainerImage.ts | |
env: | |
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | |
- name: Push Image | |
run: ./.ci/aui/pushContainerImage.ts | |
env: | |
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} |