Skip to content

env vars

env vars #1

Workflow file for this run

name: Vars & Secrets
on:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use the secret
run: echo ${{ secrets.SI_CDN}}
- name: Use the vars
run: echo ${{ variables.SI_CDN}}

Check failure on line 20 in .github/workflows/env.yml

View workflow run for this annotation

GitHub Actions / Vars & Secrets

Invalid workflow file

The workflow is not valid. .github/workflows/env.yml (Line: 20, Col: 14): Unrecognized named-value: 'variables'. Located at position 1 within expression: variables.SI_CDN