Skip to content

Commit

Permalink
Add CI workflow for API container image, clean up web app image job (#60
Browse files Browse the repository at this point in the history
)

* Add CI jobs for web app and api container images

* Remove unnecessary permissions

* Add Bull Board container image build workflow

* Reproduce typo

* Fix typo

* Trigger build
  • Loading branch information
whichnode authored Oct 26, 2024
1 parent b80caf6 commit 13f36c8
Show file tree
Hide file tree
Showing 4 changed files with 139 additions and 84 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build-api-container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Build API Container Image

on:
push:
paths:
- api/**
- .github/workflows/build-api-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 }}/api
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: ./api
file: ./api/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
CI_COMMIT_SHA=${{ github.sha }}
46 changes: 46 additions & 0 deletions .github/workflows/build-bull-board-container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
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 }}
46 changes: 46 additions & 0 deletions .github/workflows/build-web-app-container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build Web App Container Image

on:
push:
paths:
- web-app/**
- .github/workflows/build-web-app-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 }}/web-app
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: ./web-app
file: ./web-app/docker/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
CI_COMMIT_SHA=${{ github.sha }}
84 changes: 0 additions & 84 deletions .github/workflows/build-web-app.yml

This file was deleted.

0 comments on commit 13f36c8

Please sign in to comment.