Skip to content

Bump actions/upload-artifact from 4 to 6 #66

Bump actions/upload-artifact from 4 to 6

Bump actions/upload-artifact from 4 to 6 #66

Workflow file for this run

name: Build Wheel using Hatch
on:
push:
branches:
- main
pull_request:
jobs:
build-wheel:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build --target hatch -t myapp:hatch .
- name: Build wheel with hatch
run: docker run --rm -v "${{ github.workspace }}:/app" myapp:hatch build
- name: Upload wheel
uses: actions/upload-artifact@v6
with:
name: wheel
path: dist/*.whl