fix(script): skip tagging for format/typecheck tasks #181
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: Tag Packages | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| env: | |
| BUN_VERSION: 1.2.4 | |
| jobs: | |
| tag-and-push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out packages repository | |
| uses: actions/checkout@v4 | |
| - name: Install Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: ${{ env.BUN_VERSION }} | |
| - name: Install Tangram | |
| run: | | |
| curl -fsSL https://tangram.dev/install.sh | bash | |
| echo "${HOME}/.tangram/bin" >> $GITHUB_PATH | |
| - name: Tag and push all packages | |
| shell: bash | |
| run: | | |
| bun run auto --publish | |