diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 8949e93..c7d3c7a 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -5,11 +5,7 @@ on: branches: - master # Adjust the branch name as needed workflow_dispatch: - inputs: - FUNCTION_NAME: - description: 'My secret variable' - required: true - + jobs: example_job: runs-on: ubuntu-latest @@ -17,4 +13,4 @@ jobs: - name: Fetch environment variable run: echo "My secret variable is $FUNCTION_NAME" env: - MY_SECRET_VARIABLE: ${{ env.FUNCTION_NAME }} + FUNCTION_NAME: ${{ env.FUNCTION_NAME }}