Skip to content

2024 release

2024 release #22

Workflow file for this run

---
name: dist
on: [push]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install build dependencies
run: pip install -r requirements.txt
- name: Build packages
run: make package
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
- if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
name: Publish package to WPILib artifactory
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: ${{ secrets.WPI_ARTIFACTORY_USER }}
password: ${{ secrets.WPI_ARTIFACTORY_TOKEN }}
repository-url: https://wpilib.jfrog.io/artifactory/api/pypi/wpilib-python-release-2024-local