Skip to content

Build release artifacts #1

Build release artifacts

Build release artifacts #1

Workflow file for this run

name: Build release artifacts
on:
release:
types: [published]
jobs:
define-version:
uses: ./.github/workflows/reusable-tag-version.yaml

Check failure on line 9 in .github/workflows/build-release.yaml

View workflow run for this annotation

GitHub Actions / Build release artifacts

Invalid workflow file

The workflow is not valid. In .github/workflows/build-release.yaml (Line: 9, Col: 11): Error from called workflow project-origin/pedersen-commitment/.github/workflows/reusable-tag-version.yaml@c87fd602398d6bbb208a62ed9938aa4640ac8df4 (Line: 8, Col: 16): Unrecognized named-value: 'steps'. Located at position 1 within expression: steps.output-version.outputs.version
build-nuget-package:
needs:
- define-version
uses: ./.github/workflows/reusable-build-nuget-package.yaml
with:
version: ${{ needs.define-version.outputs.version }}
configuration: Release
publish-pedersen-nuget:
name: Publish PedersenCommitment Nuget package
needs:
- build-nuget-package
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: pedersen-nuget
path: build
- name: Publish
shell: bash
run: dotnet nuget push build/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json