From 1e2c91825783cbf82fee73551828b732bdbacb89 Mon Sep 17 00:00:00 2001 From: Orie Steele Date: Sat, 10 Aug 2024 12:45:12 -0500 Subject: [PATCH] test --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29fa73df..7593c0dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,13 +8,15 @@ jobs: - run: npm ci - run: npm run coverage - generate-private-key: + jose: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - id: generate_private_key + - name: Generate Private Key + id: generate_private_key uses: ./ with: transmute: | jose keygen --alg ES256 --verbose - - run: echo "${{ steps.generate_private_key.outputs.json }}" + - name: Log Private Key + run: echo "${{ steps.generate_private_key.outputs.json }}"