package #33
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: package | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
workflow_dispatch: | |
# Run the workflow when the Release workflow completes | |
workflow_run: | |
workflows: ['Release'] | |
types: | |
- completed | |
env: | |
CI: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# Trigger the job only if the Release Tagging job was successful or manually triggered | |
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event.workflow_run.conclusion == 'success' || github.event.ref == 'refs/heads/main' }} | |
env: | |
# Only push the image if the new tag is pushed or manually triggered | |
PUSH_CONDITION: ${{ startsWith(github.ref, 'refs/tags/') || github.event.workflow_run.conclusion == 'success' || github.ref == 'refs/heads/main' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: node_setup | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.12.2 | |
- name: docker meta details | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ghcr.io/${{github.repository}} | |
flavor: | | |
latest=auto | |
tags: | | |
type=edge,branch=next | |
type=semver,pattern={{version}} | |
type=sha | |
- name: Set up Docker | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Github Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push Release | |
uses: docker/build-push-action@v5 | |
with: | |
push: ${{ env.PUSH_CONDITION }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
target: vckit-api | |
# build-args: | | |