Skip to content

Commit

Permalink
wrap if expression in brackets (#576)
Browse files Browse the repository at this point in the history
* add mypy ignore to column, connections and init

* wrap if expression in brackets

* change comparison type for boolean if check

* align artifact downloads
  • Loading branch information
colin-rogers-dbt authored Jan 11, 2023
1 parent 94148f6 commit 8d266fd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,19 +196,19 @@ jobs:
pypi-release:
name: Pypi release
# only release to PyPi if we're not testing - will release to PyPi test when workflow gets rewritten
if: inputs.test_run == 'false'
if: ${{ inputs.test_run == false }}

runs-on: ubuntu-latest

needs: github-release

environment: PypiProd
steps:
- uses: actions/download-artifact@v2
- name: "Download Build Artifact - ${{ inputs.version_number }}"
uses: actions/download-artifact@v3
with:
name: dist
path: 'dist'

name: ${{ inputs.version_number }}
path: dist/
- name: Publish distribution to PyPI
uses: pypa/[email protected]
with:
Expand Down

0 comments on commit 8d266fd

Please sign in to comment.