Skip to content

📦 release: v4.0.0 #12

📦 release: v4.0.0

📦 release: v4.0.0 #12

Workflow file for this run

# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2020, 2022 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-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- 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 on PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_token }}