Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
geertjanvdenbosch committed Aug 29, 2024
1 parent f0f5064 commit b931fe8
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: release.yml
on:
push:
tags:
- '*'

jobs:
tests:
name: tests
uses: ./.github/workflows/tests.yml


build:
name: Build distribution
runs-on: ubuntu-latest
needs: tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: make install-ci
- name: Build package
run: make build
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: packages-${{ github.ref_name }}
path: dist/*

release:
name: Release to PyPI
needs: build
runs-on: ubuntu-latest

# - name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ lint:
test: lint
$(BIN)/tox run

install-ci:
$(PYTHON) -m pip install --upgrade pip setuptools wheel twine .

.PHONY: build
build:
$(PYTHON) setup.py sdist bdist_wheel
Expand Down

0 comments on commit b931fe8

Please sign in to comment.