diff --git a/.github/workflows/secrets.yml b/.github/workflows/secrets.yml index bbd44e3..160b19b 100644 --- a/.github/workflows/secrets.yml +++ b/.github/workflows/secrets.yml @@ -14,10 +14,10 @@ jobs: run: | echo "ENV var from yaml env conf - 1" - $DB_NAME echo "ENV var from yaml env conf - 2" - ${{env.DB_NAME}} - echo "ENV var from github environment settings" - ${{env.ENV_DB_NAME}} + echo "ENV var from github environment settings" - ${{vars.ENV_DB_NAME}} test-env-secrets: environment: test runs-on: ubuntu-latest steps: - name: test secrets - run: echo "ENV secrets from github environment settings" - {{secrets.MY_SECRET}} \ No newline at end of file + run: echo "ENV secrets from github environment settings" - ${{secrets.MY_SECRET}} \ No newline at end of file