mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 21:44:12 +00:00 
			
		
		
		
	Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 2 to 3. - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v2...v3) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: On Release Created (Publish misskey-js)
 | |
| 
 | |
| on:
 | |
|   release:
 | |
|     types: [created]
 | |
| 
 | |
|   workflow_dispatch:
 | |
| 
 | |
| jobs:
 | |
|   publish-misskey-js:
 | |
|     name: Publish misskey-js
 | |
|     runs-on: ubuntu-latest
 | |
| 
 | |
|     permissions:
 | |
|       contents: read
 | |
|       id-token: write
 | |
| 
 | |
|     strategy:
 | |
|       matrix:
 | |
|         node-version: [20.10.0]
 | |
| 
 | |
|     steps:
 | |
|       - uses: actions/checkout@v4
 | |
|         with:
 | |
|           submodules: true
 | |
|       - name: Install pnpm
 | |
|         uses: pnpm/action-setup@v3
 | |
|         with:
 | |
|           version: 8
 | |
|           run_install: false
 | |
|       - name: Use Node.js ${{ matrix.node-version }}
 | |
|         uses: actions/setup-node@v4
 | |
|         with:
 | |
|           node-version: ${{ matrix.node-version }}
 | |
|           cache: 'pnpm'
 | |
|           registry-url: 'https://registry.npmjs.org'
 | |
|       - name: Publish package
 | |
|         run: |
 | |
|           corepack enable
 | |
|           pnpm i --frozen-lockfile
 | |
|           pnpm build
 | |
|           pnpm --filter misskey-js publish --access public --no-git-checks --provenance
 | |
|         env:
 | |
|           NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
 | |
|           NPM_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
 |