Fix typo in workflow steps indentation #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||