mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-22 07:45:09 +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
|
- name: Remove backup files if needed
|
||||||
if: ${{ github.event.inputs.should_remove_backups == "true" }}
|
if: ${{ github.event.inputs.should_remove_backups == true }}
|
||||||
run: |
|
run: |
|
||||||
echo "🗑️ Removing backup files for site: ${{ github.event.inputs.site_name }}"
|
echo "🗑️ Removing backup files for site: ${{ github.event.inputs.site_name }}"
|
||||||
echo "Environment: ${{ github.event.inputs.environment }}"
|
echo "Environment: ${{ github.event.inputs.environment }}"
|
||||||
|
|
@ -183,7 +183,7 @@ jobs:
|
||||||
|
|
||||||
|
|
||||||
- name: Display backup information
|
- name: Display backup information
|
||||||
if: ${{ github.event.inputs.should_remove_backups == "false" }}
|
if: ${{ github.event.inputs.should_remove_backups == false }}
|
||||||
run: |
|
run: |
|
||||||
# Find and display the latest backup files after removal
|
# Find and display the latest backup files after removal
|
||||||
echo ''
|
echo ''
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue