Skip to content

Commit

Permalink
Uncommeted the get env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Torvund Bennett committed Sep 12, 2024
1 parent a039be9 commit a849b90
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/get-env-variables.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# name: get-env-variables
name: get-env-variables

# on:
# push:
# branches: [master]
on:
push:
branches: [master]

# jobs:
# build:
# runs-on: ubuntu-latest
jobs:
build:
runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v2
steps:
- uses: actions/checkout@v2

# - name: Build the project
# env:
# ENCRYPTION_KEY: ${{ secrets.ENCRYPTION_KEY }} # This makes the secret available
# run: npm run build
- name: Build the project
env:
ENCRYPTION_KEY: ${{ secrets.ENCRYPTION_KEY }} # This makes the secret available
run: npm run build

# - name: Get env variables
# run: echo "Getting env variables"
- name: Get env variables
run: echo "Getting env variables"

0 comments on commit a849b90

Please sign in to comment.