mirror of
https://github.com/multipleof4/test.git
synced 2026-01-13 16:17:56 +00:00
14 lines
347 B
YAML
14 lines
347 B
YAML
name: Run OpenSSL Thrice
|
|
on:
|
|
workflow_dispatch:
|
|
jobs:
|
|
run-command:
|
|
runs-on: ubuntu-latest
|
|
steps:g
|
|
- 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
|