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