Skip to content

Commit

Permalink
chore: rename packages option all to hosts
Browse files Browse the repository at this point in the history
  • Loading branch information
freaz committed Sep 18, 2023
1 parent 1d243a9 commit 92efbcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
- python
- nodejs
- cloudflare_worker
- all
- hosts

jobs:
core:
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
# when host-python is skipped this job should still run if inputs allow
# so we need to include a status check, then manually ensure core build didn't fail
# (see https://docs.github.com/en/actions/learn-github-actions/expressions#status-check-functions)
if: ${{ !cancelled() && needs.core.result == 'success' && (inputs.package == 'nodejs' || inputs.package == 'all') }}
if: ${{ !cancelled() && needs.core.result == 'success' && (inputs.package == 'nodejs' || inputs.package == 'hosts') }}
runs-on: ubuntu-latest
outputs:
RELEASE_VERSION: ${{ steps.release-version.outputs.RELEASE_VERSION }}
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
# when host-python is skipped this job should still run if inputs allow
# so we need to include a status check, then manually ensure core build didn't fail
# (see https://docs.github.com/en/actions/learn-github-actions/expressions#status-check-functions)
if: ${{ !cancelled() && needs.core.result == 'success' && (inputs.package == 'cloudflare_worker' || inputs.package == 'all') }}
if: ${{ !cancelled() && needs.core.result == 'success' && (inputs.package == 'cloudflare_worker' || inputs.package == 'hosts') }}
runs-on: ubuntu-latest
outputs:
RELEASE_VERSION: ${{ steps.release-version.outputs.RELEASE_VERSION }}
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
host-python-prepare:
name: Prepare Python Host
needs: [core]
if: ${{ inputs.package == 'python' || inputs.package == 'all' }}
if: ${{ inputs.package == 'python' || inputs.package == 'hosts' }}
runs-on: ubuntu-latest
steps:
# Setup
Expand Down

0 comments on commit 92efbcb

Please sign in to comment.