Skip to content

Commit

Permalink
Deploy to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
lan496 committed Jul 28, 2023
1 parent bd92300 commit 1c729f3
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# spinspg
[![testing](https://github.com/spglib/spinspg/actions/workflows/testing.yml/badge.svg)](https://github.com/spglib/spinspg/actions/workflows/testing.yml)
[![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)


Python package for detecting spin space group on top of spglib

- Document(latest): <https://spinspg.readthedocs.io/en/latest/>
- GitHub: <https://github.com/spglib/spinspg>

## Features
Expand Down Expand Up @@ -60,7 +65,7 @@ pip install .

## How to cite spinspg

If you use spinspg in your research, please cite the following paper:
If you use spinspg in your research, please cite [Spglib](https://spglib.readthedocs.io/en/latest/) and the following paper:

```
@misc{spinspg,
Expand Down
45 changes: 45 additions & 0 deletions deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: deploy

on:
push:
branches: [main, rc]
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:

jobs:
deploy-pypi:
runs-on: ubuntu-latest
# GitHub environment
environment: release
permissions:
id-token: write
needs:
- deploy-docs

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Build
run: |
python -m pip install --upgrade pip
python -m pip install setuptools setuptools_scm wheel
python setup.py sdist bdist_wheel
# Github Actions are added as Trusted Publisher for PyPI
- name: Publish package to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository_url: https://test.pypi.org/legacy/
verbose: true

- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true

0 comments on commit 1c729f3

Please sign in to comment.