Skip to content

Commit

Permalink
Merge branch 'main' into feature/269-refactor-package
Browse files Browse the repository at this point in the history
  • Loading branch information
awinia-github committed Oct 11, 2022
2 parents 505f5da + 94c0f2a commit 9e9a72e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 20 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Upload Python Package

on:
release:
types: [published]

permissions:
contents: read

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
18 changes: 0 additions & 18 deletions .github/workflows/release.yml

This file was deleted.

3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
name = semi-ate-installer
version = 0.0.1
description = "Semi ATE Installer package for ATE Projects"
long_description = ""
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
author = "The Semi-ATE Project Contributors"
author_email = "ate.organization@gmail.com"
url =
Expand Down

0 comments on commit 9e9a72e

Please sign in to comment.