summaryrefslogtreecommitdiff
path: root/.github/workflows/release.yml
blob: ab82ace5be71a32849d4a05d8ad1dd4b836fd2aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: release

on:
  push:
    tags:
      - v*

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: true
      matrix:
        python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']

    steps:
    - uses: actions/checkout@v3

    - uses: ./.github/actions/test
      with:
        python-version: ${{ matrix.python-version }}

  release:
    runs-on: ubuntu-latest
    needs: [test]
    steps:

    - uses: actions/checkout@v3

    - name: Set up Python
      uses: actions/setup-python@v4
      with:
        python-version: 3.11

    - name: install dependencies
      run: |
        python -m pip install --upgrade pip
        pip install build twine

    - name: build
      run: ./run.sh build

    - name: check
      run: ./run.sh check

    - name: release
      uses: pypa/gh-action-pypi-publish@release/v1
      with:
        password: ${{ secrets.PYPI_DEPLOY_TOKEN }}