Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ on:
jobs:
# Build job only for Craft's own releases (dogfooding)
build:
if: github.event_name == 'workflow_dispatch'
if: github.repository == 'getsentry/craft'
name: Build
uses: ./.github/workflows/build.yml
permissions:
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:

# For Craft's own releases: use local action (dogfooding)
- name: Prepare release (dogfooding)
if: github.event_name == 'workflow_dispatch'
if: github.repository == 'getsentry/craft'
id: craft-local
uses: ./
env:
Expand All @@ -125,7 +125,7 @@ jobs:

# For external repos: use published action
- name: Prepare release
if: github.event_name == 'workflow_call'
if: github.repository != 'getsentry/craft'
id: craft-action
uses: getsentry/craft@v2
env:
Expand Down
Loading