SK-2954: Fix flowvault CI coverage install and semgrep generated-code… #82
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: Public Release | ||
|
Check failure on line 1 in .github/workflows/release.yml
|
||
| on: | ||
| push: | ||
| tags: "*.*.*" | ||
| paths-ignore: | ||
| - "*/setup.py" | ||
| - "*.yml" | ||
| - "*.md" | ||
| - "*/skyflow/utils/_version.py" | ||
| jobs: | ||
| build-and-deploy: | ||
| strategy: | ||
| matrix: | ||
| include: | ||
| - variant: v2 | ||
| package-name: skyflow | ||
| tag-prefix: '' | ||
| - variant: flowvault | ||
| package-name: skyflow_flowvault | ||
| tag-prefix: 'flowvault-' | ||
| if: (matrix.variant == 'flowvault' && startsWith(github.ref_name, 'flowvault-')) || (matrix.variant == 'v2' && !startsWith(github.ref_name, 'flowvault-')) | ||
| uses: ./.github/workflows/shared-build-and-deploy.yml | ||
| with: | ||
| ref: main | ||
| tag: 'public' | ||
| variant: ${{ matrix.variant }} | ||
| package-name: ${{ matrix.package-name }} | ||
| tag-prefix: ${{ matrix.tag-prefix }} | ||
| secrets: inherit | ||