Skip to content

Commit

Permalink
Add github.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeage committed Jul 14, 2024
1 parent 66ca567 commit e2ccad9
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
# yamllint disable rule:line-length
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Builds
on: # yamllint disable-line rule:truthy
push:
branches:
- main
tags:
- "v*"
jobs:
build:
name: Build wheels and tarballs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install build tools
run: pip install build
- name: Build
run: python -m build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist

pypi-publish:
needs: build
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/openbrush
permissions:
id-token: write
steps:
- name: Download
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
6 changes: 6 additions & 0 deletions .yamlfmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
formatter:
include_document_start: true
indent: 2
retain_line_breaks_single: true
pad_line_comments: 2

0 comments on commit e2ccad9

Please sign in to comment.