aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/benchmark_publish_package.yml
blob: de0ca66fedde08cfcd73076aa0d4236367b98362 (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
50
51
52
53
54
55
name: Publish to PyPI

on:
  workflow_dispatch:

jobs:
  deploy:
    runs-on: ubuntu-latest
    permissions:
      contents: write
    steps:
    - name: Checkout repository
      uses: actions/checkout@v2
      with:
        submodules: true
        fetch-depth: 0

    - name: Set up Python
      uses: actions/setup-python@v2
      with:
        python-version: 3.8

    - name: Install Poetry
      working-directory: ./benchmark/
      run: |
        curl -sSL https://install.python-poetry.org | python3 -
        echo "$HOME/.poetry/bin" >> $GITHUB_PATH

    - name: Build project for distribution
      working-directory: ./benchmark/
      run: poetry build

    - name: Install dependencies
      working-directory: ./benchmark/
      run: poetry install

    - name: Check Version
      working-directory: ./benchmark/
      id: check-version
      run: |
        echo version=$(poetry version --short) >> $GITHUB_OUTPUT

    - name: Create Release
      uses: ncipollo/release-action@v1
      with:
        artifacts: "benchmark/dist/*"
        token: ${{ secrets.GITHUB_TOKEN }}
        draft: false
        generateReleaseNotes: false
        tag: agbenchmark-v${{ steps.check-version.outputs.version }}
        commit: master

    - name: Build and publish
      working-directory: ./benchmark/
      run: poetry publish -u __token__ -p ${{ secrets.PYPI_API_TOKEN }}