mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-03-14 22:55:46 +01:00
Fix release workflow (#234)
This commit is contained in:
parent
3899c3611e
commit
3ddd6c1db2
1 changed files with 13 additions and 2 deletions
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
|
|
@ -155,7 +155,13 @@ jobs:
|
|||
dist/Buzz*-mac.dmg
|
||||
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: macos-latest
|
||||
- os: windows-latest
|
||||
needs: [build, test]
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
steps:
|
||||
|
|
@ -164,7 +170,12 @@ jobs:
|
|||
submodules: recursive
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: Buzz-Windows
|
||||
name: Buzz-${{ runner.os }}
|
||||
- name: Install Poetry Action
|
||||
uses: snok/install-poetry@v1.3.1
|
||||
with:
|
||||
virtualenvs-create: true
|
||||
virtualenvs-in-project: true
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue