Add CI workflow for API container image, clean up web app image job (… #1
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: Build Bull Board Container Image | |
on: | |
push: | |
paths: | |
- packages/bull-board/** | |
- .github/workflows/build-bull-board-container.yml | |
branches: | |
- main | |
- build-test | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
ghcr.io/${{ github.repository }}/bull-board | |
tags: | | |
type=sha,enable=true,priority=100,prefix=,suffix=,format=long | |
- name: Log in to Container Image Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./pacakges/bull-board | |
file: ./pacakges/bull-board/Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: | | |
CI_COMMIT_SHA=${{ github.sha }} |