Skip to content

Run Github Actions var, secret #3

Run Github Actions var, secret

Run Github Actions var, secret #3

### github-actions-variable-03.yml
name: Test Github Actions variable-03
run-name: Run Github Actions var, secret
on:
push
jobs:
check-vars-context:
runs-on: ubuntu-latest
steps:
- name: "Hello, Var_Test"
run: echo "Hello, ${{ vars.VAR_TEST }}"
check-secrets-context:
runs-on: ubuntu-latest
steps:
- name: "Hello, Secret_Test"
run: echo "Hello, ${{ secrets.SECRET_TEST }}"