瀏覽代碼

add github action

Track3 2 年之前
父節點
當前提交
41e7ca1ef0
共有 1 個文件被更改,包括 26 次插入0 次删除
  1. 26 0
      .github/workflows/main.yml

+ 26 - 0
.github/workflows/main.yml

@@ -0,0 +1,26 @@
+name: Publish Docker image
+
+on:
+  push:
+    branches: [ "main" ]
+
+jobs:
+  push_to_registry:
+    name: Push Docker image to Docker Hub
+    runs-on: ubuntu-latest
+    steps:
+      - name: Check out the repo
+        uses: actions/checkout@v3
+      
+      - name: Log in to Docker Hub
+        uses: docker/login-action@v2
+        with:
+          username: ${{ secrets.DOCKERHUB_USER }}
+          password: ${{ secrets.DOCKERHUB_TOKEN }}
+      
+      - name: Build and push Docker image
+        uses: docker/build-push-action@v4
+        with:
+          context: .
+          push: true
+          tags: track3/pocketbase-comment:latest