From 399e0dfb0a28ced04039a14e25cfc7c1b6ef54b3 Mon Sep 17 00:00:00 2001 From: Kirk Byers Date: Mon, 3 Jun 2024 16:22:31 -0700 Subject: [PATCH] Testing GH Actions secrets --- .github/workflows/secrets.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/secrets.yml diff --git a/.github/workflows/secrets.yml b/.github/workflows/secrets.yml new file mode 100644 index 0000000..b9f0efa --- /dev/null +++ b/.github/workflows/secrets.yml @@ -0,0 +1,19 @@ +--- +name: Secrets +on: + - push + +jobs: + testing_secrets: + runs-on: "ubuntu-24.04" + steps: + # Checkout this repository + - uses: actions/checkout@v4 + + - run: python3 --version + + - run: echo "${{ secrets.MY_SECRET }}" + + - run: | + ls -al ${{ secrets.HIDDEN_FILE }} +