From f0a6fc6bf3351236d19e054554a009775af31400 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Wed, 10 Sep 2025 21:28:39 -0700 Subject: [PATCH] feat: Add/update workflow to run openssl command --- .github/workflows/run-openssl-thrice.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/run-openssl-thrice.yml diff --git a/.github/workflows/run-openssl-thrice.yml b/.github/workflows/run-openssl-thrice.yml new file mode 100644 index 0000000..3894808 --- /dev/null +++ b/.github/workflows/run-openssl-thrice.yml @@ -0,0 +1,13 @@ +name: Run OpenSSL Thrice +on: + workflow_dispatch: +jobs: + run-command: + runs-on: ubuntu-latest + steps: + - name: Run openssl rand -hex 32 (1/3) + run: openssl rand -hex 32 + - name: Run openssl rand -hex 32 (2/3) + run: openssl rand -hex 32 + - name: Run openssl rand -hex 32 (3/3) + run: openssl rand -hex 32 \ No newline at end of file