fix(image-viewer): update open handler to accept index parameter for image preview #407
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish_Any_Commit | |
| on: | |
| push: | |
| branches: [develop] | |
| pull_request: | |
| branches: [develop] | |
| jobs: | |
| build: | |
| if: ${{ github.repository == 'Tencent/tdesign-vue' && !startsWith(github.head_ref, 'release/')}} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - run: npm install | |
| - run: npm run build | |
| - run: node ./script/workflows/pkg-pr-new-generate-template.mjs | |
| - run: npx pkg-pr-new publish --compact --template 'tdesign-vue2-demo/**' | |