rename 'params.package' to 'params.name' and 'params.artifacts.wheel' to 'params.artifacts.package'

This commit is contained in:
umarcor
2021-11-29 22:36:23 +01:00
parent 348b8d2258
commit e7a0ac0b7a
4 changed files with 8 additions and 8 deletions

View File

@@ -14,14 +14,14 @@ on:
default: 'wheel'
type: string
artifact:
description: 'Name of the wheel artifact.'
description: 'Name of the package artifact.'
required: true
type: string
jobs:
Package:
name: 📦 Package in Wheel Format
name: 📦 Package in Source and Wheel Format
runs-on: ubuntu-latest
steps:

View File

@@ -40,12 +40,12 @@ jobs:
run: |
name = '${{ inputs.name }}'
params = {
'package': name,
'name': name,
'python_version': '${{ inputs.python_version }}',
'artifacts': {
'coverage': f'{name}-coverage',
'typing': f'{name}-typing',
'wheel': f'{name}-wheel',
'package': f'{name}-package',
'doc': f'{name}-doc',
}
}

View File

@@ -14,7 +14,7 @@ on:
default: 'wheel twine'
type: string
artifact:
description: 'Name of the wheel artifact.'
description: 'Name of the package artifact.'
required: true
type: string
secrets: