chore: use postgres in Admin CLI launchSettings.json #40
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 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.js)" >> $GITHUB_OUTPUT | |
env: | |
GIT_TAG: ${{ github.ref_name }} | |
- name: Log in to Docker Hub for accessing the cloud builder | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.CLOUD_BUILDER_USERNAME }} | |
password: ${{ secrets.CLOUD_BUILDER_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
version: "lab:latest" | |
driver: cloud | |
endpoint: "jssoft/js-soft" | |
- name: Build and Push Container Image | |
run: ./.ci/capi/buildContainerImage.js | |
env: | |
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | |
PUSH: 1 |