-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael Henderson
committed
Jan 26, 2024
1 parent
36a2b9b
commit 6cdf908
Showing
2 changed files
with
26 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,19 @@ | ||
name: Starter Workflow | ||
on: [workflow_dispatch, push, pull_request] | ||
name: Keyfactor Bootstrap Workflow | ||
|
||
jobs: | ||
call-create-github-release-workflow: | ||
uses: Keyfactor/actions/.github/workflows/github-release.yml@main | ||
get-manifest-properties: | ||
runs-on: windows-latest | ||
outputs: | ||
update_catalog: ${{ steps.read-json.outputs.prop }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Read json | ||
id: read-json | ||
shell: pwsh | ||
run: | | ||
$json = Get-Content integration-manifest.json | ConvertFrom-Json | ||
echo "::set-output name=prop::$(echo $json.update_catalog)" | ||
call-dotnet-build-and-release-workflow: | ||
needs: [call-create-github-release-workflow] | ||
uses: Keyfactor/actions/.github/workflows/dotnet-build-and-release.yml@main | ||
with: | ||
release_version: ${{ needs.call-create-github-release-workflow.outputs.release_version }} | ||
release_url: ${{ needs.call-create-github-release-workflow.outputs.release_url }} | ||
release_dir: DigiCertSymCaProxy\bin\Release | ||
secrets: | ||
token: ${{ secrets.PRIVATE_PACKAGE_ACCESS }} | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [opened, closed, synchronize, edited, reopened] | ||
push: | ||
create: | ||
branches: | ||
- 'release-*.*' | ||
|
||
call-generate-readme-workflow: | ||
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | ||
uses: Keyfactor/actions/.github/workflows/generate-readme.yml@main | ||
jobs: | ||
call-starter-workflow: | ||
uses: keyfactor/actions/.github/workflows/starter.yml@v2 | ||
secrets: | ||
token: ${{ secrets.APPROVE_README_PUSH }} | ||
|
||
call-update-catalog-workflow: | ||
needs: get-manifest-properties | ||
if: needs.get-manifest-properties.outputs.update_catalog == 'True' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') | ||
uses: Keyfactor/actions/.github/workflows/update-catalog.yml@main | ||
secrets: | ||
token: ${{ secrets.SDK_SYNC_PAT }} | ||
token: ${{ secrets.V2BUILDTOKEN}} | ||
APPROVE_README_PUSH: ${{ secrets.APPROVE_README_PUSH}} | ||
gpg_key: ${{ secrets.KF_GPG_PRIVATE_KEY }} | ||
gpg_pass: ${{ secrets.KF_GPG_PASSPHRASE }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
{ | ||
"$schema": "https://keyfactor.github.io/integration-manifest-schema.json", | ||
"integration_type": "ca-gateway", | ||
"name": "DigiCert mPKI AnyGateway", | ||
"status": "production", | ||
"update_catalog": false, | ||
"link_github": false, | ||
"gateway_framework": "22.1.1", | ||
"description": "This gateway integration supports the Digicert MPKI platform. It handles Enrollment, Renewal, Revoke and inventory by multiple seat Ids." | ||
"$schema": "https://keyfactor.github.io/integration-manifest-schema.json", | ||
"integration_type": "ca-gateway", | ||
"name": "DigiCert mPKI AnyGateway", | ||
"status": "production", | ||
"update_catalog": false, | ||
"link_github": false, | ||
"support_level": "kf-supported", | ||
"gateway_framework": "22.1.1", | ||
"release_dir": "DigiCertSymCaProxy/bin/Release", | ||
"description": "This gateway integration supports the Digicert MPKI platform. It handles Enrollment, Renewal, Revoke and inventory by multiple seat Ids." | ||
} |