This repository was archived by the owner on Jan 14, 2026. It is now read-only.
Bump tar-fs from 2.1.1 to 2.1.4 in /sanity #155
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: Build Sanity Studio | |
| on: | |
| push: | |
| branches-ignore: | |
| - master | |
| paths: | |
| - 'sanity/**' | |
| - '.github/workflows/build_sanity.yml' | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| name: Build Sanity Application | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: NPM install | |
| run: "npm install" | |
| working-directory: 'sanity' | |
| - name: Build app | |
| run: "npx sanity build" | |
| working-directory: 'sanity' | |
| env: | |
| SANITY_READ_TOKEN: ${{ secrets.SANITY_READ_TOKEN }} |