From 7a03291cd1977354db13e6825a261bdde78b9ae7 Mon Sep 17 00:00:00 2001 From: Yash Dubey <52771855+yashdubey132@users.noreply.github.com> Date: Thu, 28 Nov 2024 12:43:46 +0100 Subject: [PATCH] Create test_secrets.yml Created to test if host and other information is passed correctly --- .github/workflows/test_secrets.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/workflows/test_secrets.yml diff --git a/.github/workflows/test_secrets.yml b/.github/workflows/test_secrets.yml new file mode 100644 index 0000000..d38fcd6 --- /dev/null +++ b/.github/workflows/test_secrets.yml @@ -0,0 +1,6 @@ +- name: Debug environment variables + run: | + echo "DB_HOST: ${{ secrets.DB_HOST }}" + echo "DB_PORT: ${{ secrets.DB_PORT }}" + echo "DB_NAME: ${{ secrets.DB_NAME }}" + echo "DB_USER: ${{ secrets.DB_USER }}"