From 295c3460949572a0fe181f610a212d36118493b0 Mon Sep 17 00:00:00 2001 From: hangpersonal Date: Fri, 17 Oct 2025 20:09:34 -0700 Subject: [PATCH] Add .gitea/workflows/*.yaml --- .gitea/workflows/008_secrets_and_variables.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/008_secrets_and_variables.yaml b/.gitea/workflows/008_secrets_and_variables.yaml index e8c6946..4231122 100644 --- a/.gitea/workflows/008_secrets_and_variables.yaml +++ b/.gitea/workflows/008_secrets_and_variables.yaml @@ -28,7 +28,6 @@ jobs: - name: Deploy run: | # Deploy your application using the secrets and variables echo "Global job variable ${{ env.DEPLOYMENT_ENV }}" - echo "Variable from previous step ${CONFIG_VARIABLE} environment" echo "Variable from this step ${CONFIG_VARIABLE2} environment" echo "Local step variable ${ANOTHER_VARIABLE}" echo "Secret print ${{ secrets.API_KEY }}" @@ -36,4 +35,4 @@ jobs: env: SECRET_API_KEY: ${{ secrets.API_KEY }} CONFIG_VARIABLE2: ${{ env.DEPLOYMENT_ENV }} # Use a workflow-level environment variable - ANOTHER_VARIABLE: 'Some value' # Define a variable directly in the workflow + ANOTHER_VARIABLE: 'some value' # Define a variable directly in the workflow