Skip to content

Commit

Permalink
env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
AdelBeit committed Jun 16, 2023
1 parent 7986c78 commit 6c57d18
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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}}

0 comments on commit 6c57d18

Please sign in to comment.