Commit c92aa23d authored by narugo1992's avatar narugo1992
Browse files

dev(narugo): add tag lazy mode, ci skip

parent 052404f4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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