Skip to content

Commit

Permalink
Merge branch 'main' of github.com:snip3rnick/PyHardwareMonitor
Browse files Browse the repository at this point in the history
  • Loading branch information
snip3rnick committed Jan 31, 2024
2 parents 934274d + 7b54fc6 commit 01cd2b1
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build python package wheel and tarball

on:
push:
branches:
- main

jobs:
build:
name: Build Python wheel and upload artifacts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- 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 dist
uses: actions/upload-artifact@v2
with:
name: PyHardwareMonitor
path: |
dist

0 comments on commit 01cd2b1

Please sign in to comment.