fix: use correct shader for emote props #9
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 and release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| release: | |
| types: | |
| - created | |
| jobs: | |
| build-release: | |
| permissions: | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| # Build project into a ./dist folder | |
| # The project should be able to dynamically set the asset paths when building the index.html file | |
| # - name: Use Node.js 20.x | |
| # uses: actions/setup-node@v4.0.2 | |
| # with: | |
| # node-version: 20.x | |
| # cache: 'npm' | |
| - name: Set package.json version | |
| uses: decentraland/oddish-action@master | |
| with: | |
| deterministic-snapshot: true | |
| only-update-versions: true | |
| - name: Install | |
| run: npm install --legacy-peer-deps | |
| env: | |
| HUSKY: 0 | |
| - name: Build | |
| run: npm run build | |
| env: | |
| NODE_PATH: "src" | |
| NODE_OPTIONS: "--max-old-space-size=6144" | |
| - name: Publish | |
| uses: decentraland/oddish-action@master | |
| with: | |
| cwd: "./dist" | |
| deterministic-snapshot: true | |
| registry-url: "https://registry.npmjs.org" | |
| access: public | |
| gitlab-token: ${{ secrets.GITLAB_CDN_DEPLOYER_TOKEN }} | |
| gitlab-pipeline-url: ${{ secrets.GITLAB_CDN_DEPLOYER_URL }} | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |