Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
add a manual trigger for testing authless
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmgdr committed Mar 25, 2024
1 parent 6b76678 commit d314e29
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ on:
branches:
- main
- 'prerelease/*'

workflow_dispatch:
inputs:
checkAuth:
description: 'For checking that auth works'
required: true
type: choice
options:
- "yes"
concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
Expand All @@ -28,7 +35,12 @@ jobs:
with:
api-url: https://api.gateway.akeyless.celo-networks-dev.org
access-id: p-kf9vjzruht6l
static-secrets: '{"/static-secrets/NPM/npm-rainbowkit-celo":"NPM_TOKEN"}'
static-secrets: '{"/static-secrets/NPM/npm-publish-token":"NPM_TOKEN"}'
- name: Confirm Tokens
if: ${{ inputs.checkAuth }} === "true"
run: |
echo "Success npm tokens recieved"
exit 1
- name: Setup Node.js 18.x
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit d314e29

Please sign in to comment.