1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-18 06:24:01 +03:00

Skip date check when release worfklow is manually invoked

This commit is contained in:
Jesse Duffield 2025-04-14 18:24:45 +10:00
parent d68c116387
commit f7eb9113f3

View File

@ -27,6 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check for first Saturday of the month
if: ${{ github.event_name != 'workflow_dispatch' }}
run: |
if (( $(date +%e) > 7 )); then
echo "This is not the first Saturday of the month"