TierQuotaDefinitions are not deleted (#330) #4
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 CLI Container Image | |
on: | |
push: | |
tags: | |
- "acli/*" | |
jobs: | |
publish-acli-container-image: | |
name: Publish Admin CLI 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/acli/buildContainerImage.ts | |
env: | |
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | |
- name: Push Container Image | |
run: ./.ci/acli/pushContainerImage.ts | |
env: | |
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} |