소스 검색

chore: update CI workflows to support manual triggers and rename Docker image workflow

CaIon 9 달 전
부모
커밋
2c95a7c277
4개의 변경된 파일16개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 6
      .github/workflows/docker-image-arm64.yml
  2. 5 0
      .github/workflows/linux-release.yml
  3. 5 0
      .github/workflows/macos-release.yml
  4. 5 0
      .github/workflows/windows-release.yml

+ 1 - 6
.github/workflows/docker-image-arm64.yml

@@ -1,14 +1,9 @@
-name: Publish Docker image (arm64)
+name: Publish Docker image (Multi Registries)
 
 on:
   push:
     tags:
       - '*'
-  workflow_dispatch:
-    inputs:
-      name:
-        description: 'reason'
-        required: false
 jobs:
   push_to_registries:
     name: Push Docker image to multiple registries

+ 5 - 0
.github/workflows/linux-release.yml

@@ -3,6 +3,11 @@ permissions:
   contents: write
 
 on:
+  workflow_dispatch:
+    inputs:
+      name:
+        description: 'reason'
+        required: false
   push:
     tags:
       - '*'

+ 5 - 0
.github/workflows/macos-release.yml

@@ -3,6 +3,11 @@ permissions:
   contents: write
 
 on:
+  workflow_dispatch:
+    inputs:
+      name:
+        description: 'reason'
+        required: false
   push:
     tags:
       - '*'

+ 5 - 0
.github/workflows/windows-release.yml

@@ -3,6 +3,11 @@ permissions:
   contents: write
 
 on:
+  workflow_dispatch:
+    inputs:
+      name:
+        description: 'reason'
+        required: false
   push:
     tags:
       - '*'