release: v1.13.0 #106
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 -*- | |
# | |
# Copyright (C) 2021 CERN. | |
# | |
# Invenio-Requests 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: | |
build-n-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel babel | |
- name: Build package | |
run: | | |
python setup.py compile_catalog sdist bdist_wheel | |
- name: Publish | |
uses: pypa/gh-action-pypi-publish@v1.3.1 | |
with: | |
user: __token__ | |
password: ${{ secrets.pypi_token }} |