mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
syntax issues fixed in if
This commit is contained in:
parent
1028e98856
commit
36302b74f3
1 changed files with 2 additions and 2 deletions
4
.github/workflows/remove-site.yml
vendored
4
.github/workflows/remove-site.yml
vendored
|
|
@ -169,7 +169,7 @@ jobs:
|
|||
"
|
||||
|
||||
- name: Remove backup files if needed
|
||||
if: ${{ github.event.inputs.should_remove_backups == "true" }}
|
||||
if: ${{ github.event.inputs.should_remove_backups == true }}
|
||||
run: |
|
||||
echo "🗑️ Removing backup files for site: ${{ github.event.inputs.site_name }}"
|
||||
echo "Environment: ${{ github.event.inputs.environment }}"
|
||||
|
|
@ -183,7 +183,7 @@ jobs:
|
|||
|
||||
|
||||
- name: Display backup information
|
||||
if: ${{ github.event.inputs.should_remove_backups == "false" }}
|
||||
if: ${{ github.event.inputs.should_remove_backups == false }}
|
||||
run: |
|
||||
# Find and display the latest backup files after removal
|
||||
echo ''
|
||||
|
|
|
|||
Loading…
Reference in a new issue