Skip to content

fix (cd): secrets to be passed directly instead of inputs #15

fix (cd): secrets to be passed directly instead of inputs

fix (cd): secrets to be passed directly instead of inputs #15

Workflow file for this run

name: Release Orchestrator
on:
push:
tags: ["v*.*.*"]
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build-binaries.yml
publish-pypi:
uses: ./.github/workflows/publish-pypi.yml
needs: build # ← Can run after build, even in parallel with cargo
secrets:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}

Check failure on line 16 in .github/workflows/release-tag.yml

View workflow run for this annotation

GitHub Actions / Release Orchestrator

Invalid workflow file

The workflow is not valid. .github/workflows/release-tag.yml (Line: 16, Col: 23): Invalid secret, PYPI_API_TOKEN is not defined in the referenced workflow.
publish-cargo:
uses: ./.github/workflows/publish-cargo.yml
secrets:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}