Skip to content

add debug, fix JEEP_US typo, add JEEP_ASIA, per-brand locale #8

add debug, fix JEEP_US typo, add JEEP_ASIA, per-brand locale

add debug, fix JEEP_US typo, add JEEP_ASIA, per-brand locale #8

Workflow file for this run

name: PyPI Release
on:
release:
workflow_dispatch:
push:
tags:
- 'v*'
jobs:
release-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: build release distributions
run: |
python -m pip install build
python -m build
- name: upload windows dists
uses: actions/upload-artifact@v4
with:
name: release-dists
path: dist/
pypi-publish:
runs-on: ubuntu-latest
needs:
- release-build
permissions:
id-token: write
steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v4
with:
name: release-dists
path: dist/
- name: Publish release distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1