multivariate_gaussian extension code (#14) #14
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
name: Build and push to PyPI on merging to master | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
git-tag-and-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get version number | |
run: | | |
VERSION="$(grep ':Version:' README.rst | awk '{print $2}')" | |
echo "DIST_VERSION=v${VERSION}" >> $GITHUB_ENV | |
- name: Create Tag | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const {DIST_VERSION} = process.env | |
github.rest.git.createRef({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
ref: `refs/tags/${DIST_VERSION}`, | |
sha: context.sha | |
}) | |
- name: Create GitHub Release | |
uses: ncipollo/release-action@v1 | |
with: | |
name: "${{ env.DIST_VERSION }}" | |
tag: "${{ env.DIST_VERSION }}" | |
generateReleaseNotes: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
pypi-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install pypa/build | |
run: python -m pip install build --user | |
- name: Build a binary wheel and a source tarball | |
run: python -m build --sdist --wheel --outdir dist/ | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
aur-release: | |
needs: pypi-release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tomli | |
- name: Generate PKGBUILD | |
run: python ./bin/gen_PKGBUILD.py > ./PKGBUILD | |
- name: Get version number | |
run: | | |
VERSION="$(cat ./PKGBUILD | grep pkgver= | awk -F= '{print $2}')" | |
echo "DIST_VERSION=${VERSION}" >> $GITHUB_ENV | |
- name: Wait for PyPi | |
uses: nev7n/wait_for_response@v1 | |
with: | |
url: "https://files.pythonhosted.org/packages/source/l/lsbi/lsbi-${{ env.DIST_VERSION }}.tar.gz" | |
responseCode: 200 | |
timeout: 600000 | |
interval: 10000 | |
- name: Publish AUR package | |
uses: KSXGitHub/[email protected] | |
with: | |
pkgname: python-lsbi | |
pkgbuild: ./PKGBUILD | |
updpkgsums: True | |
commit_username: ${{ secrets.AUR_USERNAME }} | |
commit_email: ${{ secrets.AUR_EMAIL }} | |
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} |