Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
antrema authored Nov 29, 2024
1 parent 94312e6 commit 3158e12
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Show Me the S3cr3tz
on:
workflow_dispatch:

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

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

- name: Set up secret file
env:
DEBUG_SONAR_TOKEN: ${{secrets.SONAR_TOKEN}}
DEBUG_SONAR_HOST_URL: ${{secrets.SONAR_HOST_URL}}
DEBUG_SONAR_PROJECT_KEY: ${{secrets.SONAR_PROJECT_KEY}}
run: |
echo $DEBUG_SONAR_TOKEN >> secrets.txt
echo $DEBUG_SONAR_HOST_URL >> secrets.txt
echo $DEBUG_SONAR_PROJECT_KEY >> secrets.txt
- name: Run tmate
uses: mxschmitt/action-tmate@v2

0 comments on commit 3158e12

Please sign in to comment.