Browse Source

add github action

Track3 2 years ago
parent
commit
41e7ca1ef0
1 changed files with 26 additions and 0 deletions
  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