Skip to content

Commit

Permalink
Add PyPI deployment to CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiefGokhlayeh committed Nov 25, 2021
1 parent a7aea53 commit 7e5e01f
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 21 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: build

on:
push:
pull_request:
release:
types:
- published
- edited

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Run tests
uses: ./.devcontainer
with:
args: make all
- name: Run tests with config
uses: ./.devcontainer
with:
args: make all AUTOFFF_CONFIG=config.ini
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build distribution files
uses: ./.devcontainer
with:
args: poetry build
- name: Upload distribution files as artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: ./dist
if-no-files-found: error
deploy:
runs-on: ubuntu-latest
needs: [test, build]
steps:
- name: Download distribution files
uses: actions/download-artifact@v2
with:
name: dist
path: ./dist
- name: Publish autofff to TestPyPI
if: ${{ github.event_name == 'release' || (github.event_name == 'push' && github.ref == 'refs/heads/master') }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: ${{ secrets.TEST_PYPI_USERNAME }}
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true
- name: Publish autofff to PyPI
if: ${{ github.event_name == 'release' }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: ${{ secrets.PYPI_USERNAME }}
password: ${{ secrets.PYPI_API_TOKEN }}
20 changes: 0 additions & 20 deletions .github/workflows/test.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AutoFFF

[![test](https://github.com/ChiefGokhlayeh/autofff/actions/workflows/test.yml/badge.svg)](https://github.com/ChiefGokhlayeh/autofff/actions/workflows/test.yml)
[![build](https://github.com/ChiefGokhlayeh/autofff/actions/workflows/build.yml/badge.svg)](https://github.com/ChiefGokhlayeh/autofff/actions/workflows/build.yml)
[![PyPI version](https://badge.fury.io/py/autofff.svg)](https://badge.fury.io/py/autofff)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

Expand Down

0 comments on commit 7e5e01f

Please sign in to comment.