From 7a14e7532a6622108bc0119764a964475f371773 Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Fri, 14 May 2021 19:34:19 +0900 Subject: [PATCH] [Build] Add a workflow for package deployment (#3045) --- .github/workflows/deploy-packages.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/deploy-packages.yml diff --git a/.github/workflows/deploy-packages.yml b/.github/workflows/deploy-packages.yml new file mode 100644 index 0000000..512be0c --- /dev/null +++ b/.github/workflows/deploy-packages.yml @@ -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 }}" + -- 2.7.4