Skip to content

Merge pull request #24 from byuccl/fix-delay #8

Merge pull request #24 from byuccl/fix-delay

Merge pull request #24 from byuccl/fix-delay #8

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Pypi credentials
run: |
echo "[pypi]" > ~/.pypirc
echo "username = __token__" >> ~/.pypirc
echo "password = ${{ secrets.PYPI_TOKEN }}" >> ~/.pypirc
- name: Package
run: make package