Skip to content

Commit

Permalink
dev(narugo): add tag lazy mode, ci skip
Browse files Browse the repository at this point in the history
  • Loading branch information
narugo1992 committed Jul 29, 2024
1 parent 052404f commit c92aa23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wd14.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:
if [ -f requirements-test.txt ]; then pip install -r requirements-zoo.txt; fi
pip install --upgrade build
- name: Enable Tag Lazy Mode
if: ${{ (github.event.inputs.drop_multi || 'false') == 'true' }}
if: ${{ (github.event.inputs.tag_lazy_mode || 'false') == 'true' }}
shell: bash
run: |
echo 'TAG_LAZY_MODE=1' >> $GITHUB_ENV
- name: Disable Tag Lazy Mode
if: ${{ (github.event.inputs.drop_multi || 'false') == 'false' }}
if: ${{ (github.event.inputs.tag_lazy_mode || 'false') == 'false' }}
shell: bash
run: |
echo 'TAG_LAZY_MODE=' >> $GITHUB_ENV
Expand Down

0 comments on commit c92aa23

Please sign in to comment.