deps: bump @ipfs-shipyard/pinning-service-client from 1.0.1 to 2.0.0 … #52
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: On push to main branch | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
inputs: | ||
type: | ||
description: 'Emulate a push manually: Only do this if semantic-release fails!' | ||
required: false | ||
default: 'nothing' | ||
type: choice | ||
options: | ||
- push | ||
- nothing | ||
jobs: | ||
analyze: | ||
uses: ./.github/workflows/codeql-analysis.yml | ||
build: | ||
uses: ./.github/workflows/build-all-platforms.yml | ||
release: | ||
needs: [build] | ||
uses: ./.github/workflows/js-test-and-release.yml | ||
Check failure on line 28 in .github/workflows/on-main-push.yml GitHub Actions / .github/workflows/on-main-push.ymlInvalid workflow file
|
||
secrets: inherit | ||
# see https://docs.github.com/en/actions/using-workflows/reusing-workflows#calling-a-reusable-workflow | ||
build_reports: | ||
name: Build Compliance Reports | ||
uses: ./.github/workflows/build-reports.yml | ||
secrets: inherit | ||
publish_reports: | ||
name: Publish Compliance Reports | ||
needs: [build_reports] | ||
uses: ./.github/workflows/publish-reports.yml | ||
secrets: inherit | ||
with: | ||
type: ${{ github.event.inputs.type || github.event_name }} | ||