[Build] Add a workflow for package deployment (#3045)
authorWonYoung Choi <wy80.choi@samsung.com>
Fri, 14 May 2021 10:34:19 +0000 (19:34 +0900)
committerGitHub <noreply@github.com>
Fri, 14 May 2021 10:34:19 +0000 (19:34 +0900)
.github/workflows/deploy-packages.yml [new file with mode: 0644]

diff --git a/.github/workflows/deploy-packages.yml b/.github/workflows/deploy-packages.yml
new file mode 100644 (file)
index 0000000..512be0c
--- /dev/null
@@ -0,0 +1,20 @@
+name: "Deploy Packages"
+
+on:
+  workflow_dispatch:
+    inputs:
+      target:
+        description: 'Target Branch to Deploy'
+        required: true
+        default: 'master'
+
+  # schedule:
+  # - cron: "0 16 * * *"
+
+jobs:
+  test:
+    runs-on: ubuntu-latest
+    steps:
+    - run: |
+        echo "${{ github.event.inputs.target }}"
+