aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/python-publish.yml
blob: 995f5e429ebef397ff4a6e4759e0f2f85cd82e26 (plain) (blame)
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
on:
  push:
    tags:
      - "v*"
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - name: Install poetry
        run: |
          ls
          pipx install poetry
        shell: bash
      - uses: actions/setup-python@v4
        with:
          python-version: "3.9"
          architecture: "x64"
          cache: "poetry"
      - run: |
          ls
          poetry install
        shell: bash
      - run: poetry config pypi-token.pypi "$PYPI_TOKEN"
        shell: bash
        env:
          PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
      - run: |
          ls
          poetry publish --build
        shell: bash