Skip to content

Commit 9e9a72e

Browse files
committed
Merge branch 'main' into feature/269-refactor-package
2 parents 505f5da + 94c0f2a commit 9e9a72e

File tree

4 files changed

+33
-20
lines changed

4 files changed

+33
-20
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/python-publish.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Upload Python Package
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
deploy:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Set up Python
18+
uses: actions/setup-python@v3
19+
with:
20+
python-version: '3.x'
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install build
25+
- name: Build package
26+
run: python -m build
27+
- name: Publish package
28+
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
29+
with:
30+
user: __token__
31+
password: ${{ secrets.PYPI_TOKEN }}

.github/workflows/release.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = semi-ate-installer
33
version = 0.0.1
44
description = "Semi ATE Installer package for ATE Projects"
5-
long_description = ""
5+
long_description = file: README.md
6+
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
67
author = "The Semi-ATE Project Contributors"
78
author_email = "ate.organization@gmail.com"
89
url =

0 commit comments

Comments
 (0)