release: 1.2.0 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# | |
# This file is part of Invenio. | |
# Copyright (C) 2020 CERN. | |
# | |
# Invenio is free software; you can redistribute it and/or modify it | |
# under the terms of the MIT License; see LICENSE file for more details | |
name: Publish | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
Publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel | |
- name: Build package | |
run: python setup.py sdist bdist_wheel | |
- name: Publish on PyPI | |
uses: pypa/gh-action-pypi-publish@v1.8.11 | |
with: | |
user: __token__ | |
# The token is provided by the inveniosoftware organization | |
password: ${{ secrets.pypi_token }} | |