fix(pie): render angular insets consistently on web (#685) #234
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: Victory Native Release Workflow | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| environment: Production | |
| permissions: | |
| contents: write | |
| id-token: write | |
| issues: write | |
| repository-projects: write | |
| deployments: write | |
| packages: write | |
| pull-requests: write | |
| steps: | |
| # v6.0.2 | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| - uses: ./.github/actions/setup | |
| - run: npm config set registry https://registry.npmjs.org | |
| - name: Build | |
| run: yarn run build | |
| # v1.8.0 | |
| - name: PR or Publish | |
| id: changesets | |
| uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b | |
| with: | |
| version: yarn run version | |
| publish: yarn run changeset publish | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} |