Skip to content

Create build-wheel.yml #1

Create build-wheel.yml

Create build-wheel.yml #1

Workflow file for this run

name: Build Wheel for Pyodide
on:
push:
branches: [ no_pyperclip]
tags: [ 'v*' ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install build dependencies
run: |
pip install build wheel
- name: Build wheel
run: |
python -m build --wheel
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: ocp_vscode-wheel
path: dist/*.whl