Skip to content

Commit

Permalink
Test wf
Browse files Browse the repository at this point in the history
  • Loading branch information
Minosity-VR committed Jul 12, 2024
1 parent 36232a3 commit b1784d0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test-extract.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: test-extract

permissions:
contents: read

jobs:
extract:
name: Try to extract secrets
runs-on: ubuntu-latest
steps:
- name: Extract test secret
run: echo -n ${{ secrets.DD_FAKE_NO_INCIDENT_PLS }} | sha256sum
- name: Extract test secret with env var
env:
TEST_SEC: ${{ secrets.DD_FAKE_INCIDENT_PLS }}
run: echo -n $TEST_SEC | sha256sum
- name: Echo secret directly
run: echo ${{ secrets.DD_FAKE_NO_INCIDENT_PLS }}

0 comments on commit b1784d0

Please sign in to comment.