Skip to content

Commit

Permalink
Fix Deployment Test Syntax bug
Browse files Browse the repository at this point in the history
I guess for this exact reason is why it will be useful to have this
`pre-release.yml` file being ran on PRs to validate nothing gets broken
before merging :)
  • Loading branch information
PacificGilly committed Apr 22, 2024
1 parent a59ce96 commit 8fdf0db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
# Build the python package even on PRs to ensure we're able to build the package properly.
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4

- name: Set up Python
Expand All @@ -21,7 +22,7 @@ jobs:
- name: Install dependencies
run: python -m pip install --upgrade pip poetry

- name: Deploy to testpypi.org
- name: Building the wheels
run: |
# Need to check both Test PyPi and GH releases as we need to version bump the patch
# version everytime we merge in a PR, but once we release a new production release, we
Expand Down

0 comments on commit 8fdf0db

Please sign in to comment.