I have one public repo in security i add 2 secrets below is screenshot that shows 2 secrets
enter image description here
I have one private repo below is screenshot that shows in github marketplace add is not showing client id and client secret is empty
enter image description here
How to get client id and client secret as i add into public repo from there it should show in marketplace app client id and client secret it should take from public repo which i add in secrets
this is root directory of github public repo showing below
version:
description: 'Token Authentication URL'
required: true
client_id:
description: 'The Client ID'
required: true
client_secret:
description: 'The Client Secret'
required: true
runs:
using: "composite"
steps:
- name: Github Action
run: ${GITHUB_ACTION_PATH}/m2m.sh --version "${{ inputs.version }}" --client_secret "${{ inputs.CLIENT_SECRET }}" --client_id "${{ inputs.CLIENT_ID }}"
shell: bash
env:
CLIENT_ID: ${{ secrets.client_id }}
CLIENT_SECRET: ${{ secrets.client_secret }}
May i know what i miss and where i did go wrong
cloudnetwork is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.