Update README.md
This commit is contained in:
		
							parent
							
								
									27082cecf3
								
							
						
					
					
						commit
						6c8a6e529a
					
				
							
								
								
									
										26
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										26
									
								
								README.md
									
									
									
									
									
								
							| @ -10,14 +10,14 @@ This action sets by node environment for use in actions by: | |||||||
| - registering problem matchers for error output | - registering problem matchers for error output | ||||||
| - configuring authentication for GPR or npm | - configuring authentication for GPR or npm | ||||||
| 
 | 
 | ||||||
| # v2-beta | # v2 | ||||||
| 
 | 
 | ||||||
| A beta release which adds reliability for pulling node distributions from a cache of node releases is available by referencing the `v2-beta` tag. | This release adds reliability for pulling node distributions from a cache of node releases. | ||||||
| 
 | 
 | ||||||
| ```yaml | ```yaml | ||||||
| steps: | steps: | ||||||
| - uses: actions/checkout@v2 | - uses: actions/checkout@v2 | ||||||
| - uses: actions/setup-node@v2-beta | - uses: actions/setup-node@v2 | ||||||
|   with: |   with: | ||||||
|     node-version: '12' |     node-version: '12' | ||||||
| ``` | ``` | ||||||
| @ -34,7 +34,7 @@ Basic: | |||||||
| ```yaml | ```yaml | ||||||
| steps: | steps: | ||||||
| - uses: actions/checkout@v2 | - uses: actions/checkout@v2 | ||||||
| - uses: actions/setup-node@v1 | - uses: actions/setup-node@v2 | ||||||
|   with: |   with: | ||||||
|     node-version: '12' |     node-version: '12' | ||||||
| - run: npm install | - run: npm install | ||||||
| @ -47,7 +47,7 @@ Check latest version: | |||||||
| ```yaml | ```yaml | ||||||
| steps: | steps: | ||||||
| - uses: actions/checkout@v2 | - uses: actions/checkout@v2 | ||||||
| - uses: actions/setup-node@v2-beta | - uses: actions/setup-node@v2 | ||||||
|   with: |   with: | ||||||
|     node-version: '12' |     node-version: '12' | ||||||
|     check-latest: true |     check-latest: true | ||||||
| @ -67,7 +67,7 @@ jobs: | |||||||
|     steps: |     steps: | ||||||
|       - uses: actions/checkout@v2 |       - uses: actions/checkout@v2 | ||||||
|       - name: Setup node |       - name: Setup node | ||||||
|         uses: actions/setup-node@v1 |         uses: actions/setup-node@v2 | ||||||
|         with: |         with: | ||||||
|           node-version: ${{ matrix.node }} |           node-version: ${{ matrix.node }} | ||||||
|       - run: npm install |       - run: npm install | ||||||
| @ -86,7 +86,7 @@ jobs: | |||||||
|     name: Node sample |     name: Node sample | ||||||
|     steps: |     steps: | ||||||
|       - uses: actions/checkout@v2 |       - uses: actions/checkout@v2 | ||||||
|       - uses: actions/setup-node@v1 |       - uses: actions/setup-node@v2 | ||||||
|         with: |         with: | ||||||
|           node-version: '12' |           node-version: '12' | ||||||
|           architecture: 'x64' # optional, x64 or x86. If not specified, x64 will be used by default |           architecture: 'x64' # optional, x64 or x86. If not specified, x64 will be used by default | ||||||
| @ -121,7 +121,7 @@ jobs: | |||||||
|     steps: |     steps: | ||||||
|       - uses: actions/checkout@v2 |       - uses: actions/checkout@v2 | ||||||
|       - name: Setup node |       - name: Setup node | ||||||
|         uses: actions/setup-node@v1 |         uses: actions/setup-node@v2 | ||||||
|         with: |         with: | ||||||
|           node-version: ${{ matrix.node_version }} |           node-version: ${{ matrix.node_version }} | ||||||
|           architecture: ${{ matrix.architecture }} |           architecture: ${{ matrix.architecture }} | ||||||
| @ -133,7 +133,7 @@ Publish to npmjs and GPR with npm: | |||||||
| ```yaml | ```yaml | ||||||
| steps: | steps: | ||||||
| - uses: actions/checkout@v2 | - uses: actions/checkout@v2 | ||||||
| - uses: actions/setup-node@v1 | - uses: actions/setup-node@v2 | ||||||
|   with: |   with: | ||||||
|     node-version: '10.x' |     node-version: '10.x' | ||||||
|     registry-url: 'https://registry.npmjs.org' |     registry-url: 'https://registry.npmjs.org' | ||||||
| @ -141,7 +141,7 @@ steps: | |||||||
| - run: npm publish | - run: npm publish | ||||||
|   env: |   env: | ||||||
|     NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |     NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||||||
| - uses: actions/setup-node@v1 | - uses: actions/setup-node@v2 | ||||||
|   with: |   with: | ||||||
|     registry-url: 'https://npm.pkg.github.com' |     registry-url: 'https://npm.pkg.github.com' | ||||||
| - run: npm publish | - run: npm publish | ||||||
| @ -153,7 +153,7 @@ Publish to npmjs and GPR with yarn: | |||||||
| ```yaml | ```yaml | ||||||
| steps: | steps: | ||||||
| - uses: actions/checkout@v2 | - uses: actions/checkout@v2 | ||||||
| - uses: actions/setup-node@v1 | - uses: actions/setup-node@v2 | ||||||
|   with: |   with: | ||||||
|     node-version: '10.x' |     node-version: '10.x' | ||||||
|     registry-url: <registry url> |     registry-url: <registry url> | ||||||
| @ -161,7 +161,7 @@ steps: | |||||||
| - run: yarn publish | - run: yarn publish | ||||||
|   env: |   env: | ||||||
|     NODE_AUTH_TOKEN: ${{ secrets.YARN_TOKEN }} |     NODE_AUTH_TOKEN: ${{ secrets.YARN_TOKEN }} | ||||||
| - uses: actions/setup-node@v1 | - uses: actions/setup-node@v2 | ||||||
|   with: |   with: | ||||||
|     registry-url: 'https://npm.pkg.github.com' |     registry-url: 'https://npm.pkg.github.com' | ||||||
| - run: yarn publish | - run: yarn publish | ||||||
| @ -173,7 +173,7 @@ Use private packages: | |||||||
| ```yaml | ```yaml | ||||||
| steps: | steps: | ||||||
| - uses: actions/checkout@v2 | - uses: actions/checkout@v2 | ||||||
| - uses: actions/setup-node@v1 | - uses: actions/setup-node@v2 | ||||||
|   with: |   with: | ||||||
|     node-version: '10.x' |     node-version: '10.x' | ||||||
|     registry-url: 'https://registry.npmjs.org' |     registry-url: 'https://registry.npmjs.org' | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user