mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-23 11:45:06 +03:00
fix: conditionally use with: ref on actions/checkout (#4628)
This commit is contained in:
parent
1eeebc3c28
commit
94014f6b25
3
.github/workflows/test-e2e.yml
vendored
3
.github/workflows/test-e2e.yml
vendored
@ -17,6 +17,9 @@ jobs:
|
||||
CARGO_TERM_COLOR: always
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
if: ${{ github.event_name != 'workflow_dispatch' }}
|
||||
- uses: actions/checkout@v4
|
||||
if: ${{ github.event_name == 'workflow_dispatch' }}
|
||||
with:
|
||||
ref: ${{ github.event.inputs.sha }}
|
||||
- name: Install Tauri OS dependencies
|
||||
|
Loading…
Reference in New Issue
Block a user