From a7fccb4892a62aefcbfcb4445fa4ae2dc8d28ee4 Mon Sep 17 00:00:00 2001 From: Debdut Chakraborty Date: Fri, 4 Aug 2023 19:22:31 +0530 Subject: [PATCH] + manual trigger --- .github/workflows/manual-build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/manual-build.yml diff --git a/.github/workflows/manual-build.yml b/.github/workflows/manual-build.yml new file mode 100644 index 0000000..9aa3b09 --- /dev/null +++ b/.github/workflows/manual-build.yml @@ -0,0 +1,20 @@ +name: Manually build both images and test + +on: + workflow_dispatch: + inputs: + tag: + type: string + required: true + + +jobs: + do: + uses: ./.github/workflows/build_images.yml + with: + tag: ${{ inputs.tag }} + secrets: + github-token: ${{ secrets.GH_TOKEN_PERSONAL }} + digitalocean-token: ${{ secrets.DO_TOKEN }} + aws-secret-key: ${{secrets.AWS_SECRET_KEY }} + aws-key-id: ${{secrets.AWS_KEY_ID}}