Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release-builtins.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Publish ua-parser builtins

run-name: Publish ${{ inputs.tag || 'master' }} to ${{ inputs.environment || 'pypy (scheduled)' }}
run-name: Publish ${{ inputs.tag || 'master' }} to ${{ inputs.environment || 'pypi (scheduled)' }}

permissions: {}

Expand All @@ -14,7 +14,7 @@ on:
description: "uap-core ref to release"
type: string
environment:
description: "environment to release for (testpypy or pypy)"
description: "environment to release for (testpypi or pypi)"
type: environment
required: true

Expand All @@ -38,7 +38,7 @@ jobs:
- name: Check necessity of release
id: check
env:
PYPI: ${{ github.event.inputs.environment || 'pypy' }}
PYPI: ${{ github.event.inputs.environment || 'pypi' }}
REF: ${{ inputs.tag || 'HEAD' }}
run: |
case $PYPI in
Expand Down