Skip to content

Commit

Permalink
Fix deploy CI
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 8, 2024
1 parent 317586e commit e9225ae
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 16 deletions.
36 changes: 20 additions & 16 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,17 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu, macos, windows]
exclude:
- python-version: "3.9"
- python-version: "3.10"
os: macos
- python-version: "3.10"
os: windows
- python-version: "3.11"
os: macos
- python-version: "3.11"
os: windows
fail-fast: false
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 20
Expand Down Expand Up @@ -218,20 +222,20 @@ jobs:
- name: Push Docker Image
run: |
docker push ghcr.io/neuro-inc/apolo-flow:${{ needs.lint.outputs.version }}
- name: GitHub Release
uses: aio-libs/create-release@v1.6.6
with:
changes_file: CHANGELOG.md
name: Apolo Flow
github_token: ${{ secrets.GITHUB_TOKEN }}
pypi_token: ${{ secrets.PYPI_TOKEN }}
version_file: src/apolo_flow/__init__.py # CLI has the same version
start_line: "[comment]: # (towncrier release notes start)"
head_line: "# Apolo Flow {version}\\s+\\({date}\\)\n?"
fix_issue_regex:
"\\(\\[#(\\d+)\\]\\(https://github.com/neuro-inc/neuro-flow/issues/\\\
1\\)\\)"
fix_issue_repl: "(#\\1)"
# - name: GitHub Release
# uses: aio-libs/create-release@v1.6.6
# with:
# changes_file: CHANGELOG.md
# name: Apolo Flow
# github_token: ${{ secrets.GITHUB_TOKEN }}
# pypi_token: ${{ secrets.PYPI_TOKEN }}
# version_file: src/apolo_flow/__init__.py # CLI has the same version
# start_line: "[comment]: # (towncrier release notes start)"
# head_line: "# Apolo Flow {version}\\s+\\({date}\\)\n?"
# fix_issue_regex:
# "\\(\\[#(\\d+)\\]\\(https://github.com/neuro-inc/neuro-flow/issues/\\\
# 1\\)\\)"
# fix_issue_repl: "(#\\1)"

- name: Make publish neuro dist
# publishing neuro-flow for backward compatibility
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@

[comment]: # (towncrier release notes start)

# Apolo Flow 24.8.0 (2024-10-08)

No significant changes.


# Apolo Flow 24.8.0 (2024-08-09)

No significant changes.
Expand Down

0 comments on commit e9225ae

Please sign in to comment.