Skip to content

Commit

Permalink
style: Revert unneeded changes from "cd.yml"
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Mar 22, 2024
1 parent 3d38017 commit 507e5bf
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CD
"on":
on:
workflow_dispatch:
pull_request_target:
push:
Expand All @@ -8,15 +8,19 @@ name: CD
release:
types:
- published

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
FORCE_COLOR: 3

jobs:
dist:
name: Distribution build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -32,8 +36,7 @@ jobs:
- uses: hynek/build-and-inspect-python-package@v2

publish:
needs:
- dist
needs: [dist]
name: Publish to PyPI
environment: pypi
permissions:
Expand Down

0 comments on commit 507e5bf

Please sign in to comment.