Quantcast
Channel: Passing env variable inputs to a reusable workflow - Stack Overflow
Viewing all articles
Browse latest Browse all 7

Answer by Rayan arnel for Passing env variable inputs to a reusable workflow

$
0
0

If you are looking to retrieve a variable defined at the GitHub repository settings level, here is how I accessed this value:

name: Decrypt env.enc file to .env and load in variable ENV contenton:  workflow_call:    secrets:      MAIN_SECRET_KEY_SOPS:        required: trueenv:  env_exemple: ${{ vars.REPOSITORY_API_PATH }}jobs:  testVars:    runs-on: ubuntu-latest    steps:      - name: Print example value created in GitHub repository variable:API_PATH        run: echo ${{ env.env_exemple }}

vars contexte :https://docs.github.com/en/actions/learn-github-actions/variables

With the vars context, you don't need to pass the value to workflow_call; it's already accessible


Viewing all articles
Browse latest Browse all 7

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>