Skip to content

Commit

Permalink
Fix Ubuntu release artifacts (#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
chidiwilliams authored May 6, 2023
1 parent a489c88 commit c281684
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- main
tags:
- '*'
- "*"
pull_request:

concurrency:
Expand All @@ -29,7 +29,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: '3.10.7'
python-version: "3.10.7"

- name: Install Poetry Action
uses: snok/[email protected]
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: '3.10.7'
python-version: "3.10.7"

- name: Install Poetry Action
uses: snok/[email protected]
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: '3.10.7'
python-version: "3.10.7"

- name: Install Poetry Action
uses: snok/[email protected]
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
uses: benchmark-action/github-action-benchmark@v1
with:
name: ${{ runner.os }}
tool: 'pytest'
tool: "pytest"
output-file-path: benchmarks.json
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-on-alert: true
Expand All @@ -270,7 +270,8 @@ jobs:
include:
- os: macos-latest
- os: windows-latest
needs: [ build, test ]
- os: ubuntu-20.04
needs: [build, test]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
Expand All @@ -295,7 +296,7 @@ jobs:
deploy_brew_cask:
runs-on: macos-latest
needs: [ release ]
needs: [release]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit c281684

Please sign in to comment.