feat: Add/update workflow to run openssl command

This commit is contained in:
2025-09-10 21:28:39 -07:00
parent a6e28ed5f5
commit f0a6fc6bf3

View File

@@ -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