We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 972f584 commit 28f6b20Copy full SHA for 28f6b20
.github/workflows/release.yml
@@ -2,14 +2,14 @@ name: release
2
on:
3
push:
4
tags:
5
- - "v*.*.*"
+ - "*"
6
workflow_dispatch:
7
jobs:
8
release-binary:
9
runs-on: ${{ matrix.os }}
10
strategy:
11
- matrix:
12
- os: ['windows-latest', 'ubuntu-latest', 'macos-13', 'macos-latest']
+ matrix:
+ os: ["windows-latest", "ubuntu-latest", "macos-13", "macos-latest"]
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v4
@@ -36,7 +36,7 @@ jobs:
36
release-python:
37
runs-on: ubuntu-latest
38
env:
39
- POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI}}
+ POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI}}
40
41
42
0 commit comments