Updates from PR#79 to fix readme and manifest in main #497
Workflow file for this run
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
name: Starter Workflow | |
on: [workflow_dispatch, push, pull_request] | |
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: IISU/bin/Release/net6.0 | |
secrets: | |
token: ${{ secrets.PRIVATE_PACKAGE_ACCESS }} | |
call-generate-readme-workflow: | |
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | |
uses: Keyfactor/actions/.github/workflows/generate-readme.yml@main | |
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 }} | |