Skip to content
Open

TEST #2952

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,19 +92,18 @@ jobs:
uses: signalwire/actions-template/.github/actions/repo-auth-client@main
with:
mode: nonce
- name: Mask nonce in logs
run: echo "::add-mask::${{ steps.get-nonce.outputs.nonce }}"

issue-token:
name: "Issue temporary token"
runs-on: ubuntu-latest
needs: get-nonce
env:
NONCE: ${{ needs.get-nonce.outputs.nonce }}
outputs:
token: ${{ steps.issue-token.outputs.token }}
steps:
- name: Mask Token
run: echo "::add-mask::$NONCE"

- name: Mask nonce in logs
run: echo "::add-mask::${{ needs.get-nonce.outputs.nonce }}"
- name: Issue Token
id: issue-token
uses: signalwire/actions-template/.github/actions/repo-auth-client@main
Expand Down
Loading