79 lines
2.2 KiB
Diff
79 lines
2.2 KiB
Diff
|
From 9ad5f9a1cced4f3e701ec1e0cb355994e197673b Mon Sep 17 00:00:00 2001
|
||
|
From: Johnny Hsieh <32300164+mnixry@users.noreply.github.com>
|
||
|
Date: Fri, 26 Jan 2024 01:44:39 +0800
|
||
|
Subject: [PATCH 04/10] Add GitHub Action to automatic build and push Docker
|
||
|
Image (#417)
|
||
|
Content-Type: text/plain; charset="utf-8"
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Co-authored-by: Tim Zabel <Tjzabel21@gmail.com>
|
||
|
Signed-off-by: Alexander Miroshnichenko <alex@millerson.name>
|
||
|
---
|
||
|
.github/workflows/main.yml | 54 ++++++++++++++++++++++++++++++++++++++
|
||
|
1 file changed, 54 insertions(+)
|
||
|
create mode 100644 .github/workflows/main.yml
|
||
|
|
||
|
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
|
||
|
new file mode 100644
|
||
|
index 000000000000..811508e8dadf
|
||
|
--- /dev/null
|
||
|
+++ b/.github/workflows/main.yml
|
||
|
@@ -0,0 +1,54 @@
|
||
|
+# This workflow uses actions that are not certified by GitHub.
|
||
|
+# They are provided by a third-party and are governed by
|
||
|
+# separate terms of service, privacy policy, and support
|
||
|
+# documentation.
|
||
|
+
|
||
|
+name: Docker
|
||
|
+
|
||
|
+on:
|
||
|
+ push:
|
||
|
+ branches: [main]
|
||
|
+
|
||
|
+env:
|
||
|
+ REGISTRY: ghcr.io
|
||
|
+ IMAGE_NAME: ${{ github.repository }}
|
||
|
+
|
||
|
+concurrency:
|
||
|
+ group: ${{ github.workflow }}-${{ github.ref }}
|
||
|
+ cancel-in-progress: true
|
||
|
+
|
||
|
+jobs:
|
||
|
+ build-and-push-image:
|
||
|
+ name: Build and Push Image
|
||
|
+
|
||
|
+ runs-on: ubuntu-latest
|
||
|
+ permissions:
|
||
|
+ contents: read
|
||
|
+ packages: write
|
||
|
+
|
||
|
+ steps:
|
||
|
+ - name: Checkout repository
|
||
|
+ uses: actions/checkout@v3
|
||
|
+
|
||
|
+ - name: Log in to the Container registry
|
||
|
+ uses: docker/login-action@v2
|
||
|
+ with:
|
||
|
+ registry: ${{ env.REGISTRY }}
|
||
|
+ username: ${{ github.actor }}
|
||
|
+ password: ${{ secrets.GITHUB_TOKEN }}
|
||
|
+
|
||
|
+ - name: Extract metadata (tags, labels) for Docker
|
||
|
+ id: meta
|
||
|
+ uses: docker/metadata-action@v4
|
||
|
+ with:
|
||
|
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||
|
+ github-token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
+
|
||
|
+ - name: Build and push Docker image
|
||
|
+ uses: docker/build-push-action@v4
|
||
|
+ with:
|
||
|
+ push: true
|
||
|
+ context: .
|
||
|
+ file: ./deployments/container/Dockerfile
|
||
|
+ tags: ${{ steps.meta.outputs.tags }}
|
||
|
+ labels: ${{ steps.meta.outputs.labels }}
|
||
|
--
|
||
|
2.41.0
|
||
|
|