Skip to content

Commit

Permalink
github action: release_and_publish
Browse files Browse the repository at this point in the history
  • Loading branch information
eimrek committed Jul 30, 2024
1 parent 8695985 commit 3bca058
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/release_and_publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
name: Release on Github and publish on PyPI

on:
push:
tags:
# After vMajor.Minor.Patch
- v[0-9]+.[0-9]+.[0-9]+*

jobs:
release_and_publish:
runs-on: ubuntu-latest
if: github.repository == 'materialscloud-org/optimade-maker' && startsWith(github.ref, 'refs/tags/v')

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Install pypa/build
run: |
python -m pip install build
- name: Build source distribution
run: python -m build . --wheel --sdist

- name: Create release
uses: softprops/action-gh-release@v2
with:
files: |
dist/*
generate_release_notes: true

- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}

0 comments on commit 3bca058

Please sign in to comment.