Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
vmttn committed Apr 18, 2024
1 parent d64657c commit cc78da9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/foo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: foo

on:
pull_request:
branches: [main]


jobs:
foo:
runs-on: ubuntu-latest
env:
FOO: ${{ secrets.FOO }}

steps:
- run: |
echo "$FOO" | while IFS='=' read -r key value; do
echo "::add-mask::$value"
echo "TF_VAR_${key,,}=$value" >> "$GITHUB_ENV"
done
- run: env | sort

0 comments on commit cc78da9

Please sign in to comment.