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

add a manual trigger for testing authless #123

Merged
merged 3 commits into from
Mar 25, 2024
Merged
Changes from 2 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
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 }} === "yes"
run: |
echo "Success npm tokens recieved"
exit 1
aaronmgdr marked this conversation as resolved.
Show resolved Hide resolved
- name: Setup Node.js 18.x
uses: actions/setup-node@v4
with:
Expand Down