Skip to content

Commit

Permalink
add env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
sgmv committed Jun 4, 2024
1 parent 790cf46 commit bb856a5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/secrets.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Show Me the S3cr3tz
on: [push]

jobs:
debug:
name: Debug
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up secret file
env:
AUTH_URL: ${{ secrets.AUTH_URL }}
USERNAME: ${{ secrets.USERNAME }}
run: |
echo AUTH_URL >> secrets.txt
echo USERNAME >> secrets.txt
- name: Run tmate
uses: mxschmitt/action-tmate@v2

0 comments on commit bb856a5

Please sign in to comment.