فهرست منبع

指定只有main更新时才部署pages (#15)

* 指定只有main更新时才部署pages
LoGin 1 سال پیش
والد
کامیت
81fd2446eb
1فایلهای تغییر یافته به همراه6 افزوده شده و 1 حذف شده
  1. 6 1
      .github/workflows/build.yml

+ 6 - 1
.github/workflows/build.yml

@@ -1,5 +1,10 @@
 name: Build and Deploy
-on: [ push, pull_request ]
+on:
+  push:
+    branches: [ "main" ]
+  pull_request:
+    branches: [ "main" ]
+
 jobs:
   build-and-deploy:
     runs-on: ubuntu-latest