Skip to content

Commit

Permalink
Create test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
vipul-rawat committed Dec 24, 2024
1 parent 9687409 commit a15af09
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Print Secret

on:
push:
branches:
- master

jobs:
print-secret:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Print GitHub Secret
env:
MY_SECRET: ${{ secrets.MY_SECRET }}
run: |
echo "The secret is: $MY_SECRET"

0 comments on commit a15af09

Please sign in to comment.