Skip to content

Commit

Permalink
Merge pull request #91 from Trycatch-tv/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
judlup authored May 23, 2024
2 parents 4390017 + 188cfd0 commit 75fe17c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Validate Secrets

on:
push:
branches:
- main

jobs:
validate-secrets:
runs-on: ubuntu-latest

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

- name: Print secrets (safely)
run: |
echo "EC2_HOST is set"
echo "EC2_USER is set"
echo "EC2_PASSWORD is set"
env:
EC2_HOST: ${{ secrets.EC2_HOST }}
EC2_USER: ${{ secrets.EC2_USER }}

0 comments on commit 75fe17c

Please sign in to comment.