From c8391bfa997e0f60ac3f175aa84a167fd1912954 Mon Sep 17 00:00:00 2001 From: zizifn <1803942+zizifn@users.noreply.github.com> Date: Fri, 8 Apr 2022 19:33:59 +0800 Subject: [PATCH] enable region --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 99b219c..69f8f5c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,9 +23,12 @@ jobs: environment: ${{ github.event.inputs.env}} outputs: actions: ${{ github.event.inputs.actions || 'deploy'}} - herokuAppName: ${{ github.event.inputs.heroku-app-name || secrets.APP_NAME }} + herokuAppName: ${{ steps.herokuAppName.outputs.name }} test111: ${{ github.event.inputs.env }} # todo steps: + - id: herokuAppName # TODO check atcion doc for usage + # if: ${{ github.event.inputs.actions == 'start'}} + run: echo "::set-output name=name::${{ github.event.inputs.heroku-app-name || secrets.APP_NAME }}" - id: isDeployHeroku # TODO check atcion doc for usage # if: ${{ github.event.inputs.actions == 'start'}} run: echo "::set-output name=action::false"