/[LeafOK_CVS]/lbbs/.github/workflows/docker-image.yml
ViewVC logotype

Contents of /lbbs/.github/workflows/docker-image.yml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (show annotations)
Sun Jan 18 09:14:05 2026 UTC (8 weeks, 2 days ago) by sysadm
Branch: MAIN
Changes since 1.3: +0 -2 lines
Content type: application/yaml
Update

1 name: Docker Image CI
2
3 on:
4 push:
5 branches: [ "main" ]
6
7 env:
8 DOCKERHUB_PLATFORMS: linux/amd64,linux/arm64
9 BBSD_IMAGE: ${{ secrets.DOCKERHUB_USERNAME }}/lbbs-bbsd
10
11 jobs:
12
13 build:
14
15 runs-on: ubuntu-latest
16
17 steps:
18 - uses: actions/checkout@v4
19
20 - name: Set up QEMU
21 uses: docker/setup-qemu-action@v3
22
23 - name: Set up Docker Buildx
24 uses: docker/setup-buildx-action@v3
25
26 - name: Build the Docker image
27 id: build-bbsd
28 uses: docker/build-push-action@v5
29 with:
30 platforms: ${{ env.DOCKERHUB_PLATFORMS }}
31 context: .
32 file: Dockerfile/dockerfile.bbsd
33 tags: |
34 ${{ env.BBSD_IMAGE }}:dev
35 labels: ${{ steps.meta.outputs.labels }}

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1