mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 11:06:56 +08:00
Forward secrets to pipeline template.
This commit is contained in:
7
.github/workflows/CompletePipeline.yml
vendored
7
.github/workflows/CompletePipeline.yml
vendored
@@ -72,6 +72,13 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
default: ''
|
default: ''
|
||||||
type: string
|
type: string
|
||||||
|
secrets:
|
||||||
|
PYPI_TOKEN:
|
||||||
|
description: "Token for pushing releases to PyPI."
|
||||||
|
required: false
|
||||||
|
CODACY_PROJECT_TOKEN:
|
||||||
|
description: "Token for pushing coverage results to Codacy."
|
||||||
|
required: false
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ConfigParams:
|
ConfigParams:
|
||||||
|
|||||||
@@ -10,3 +10,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
package_namespace: pyExamples
|
package_namespace: pyExamples
|
||||||
package_name: Extensions
|
package_name: Extensions
|
||||||
|
secrets:
|
||||||
|
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
||||||
|
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
|
||||||
|
|||||||
@@ -9,3 +9,6 @@ jobs:
|
|||||||
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
|
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
|
||||||
with:
|
with:
|
||||||
package_name: pyDummy
|
package_name: pyDummy
|
||||||
|
secrets:
|
||||||
|
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
||||||
|
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
|
||||||
|
|||||||
Reference in New Issue
Block a user