Skip to content

Added missing dependency toml for increment_version.py #8

Added missing dependency toml for increment_version.py

Added missing dependency toml for increment_version.py #8

Workflow file for this run

# SPDX-FileCopyrightText: 2024 German Aerospace Center (DLR)
#
# SPDX-License-Identifier: CC0-1.0
# SPDX-FileContributor: Michael Meinel
# SPDX-FileContributor: Michael Fritzsche
name: Upload Python Package
on:
push:
branches:
- main
- develop
tags:
- 'v**'
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install toml
- name: Build package
run: |
python increment_version.py
python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}