may god make this work
This commit is contained in:
		
							parent
							
								
									caafb068ef
								
							
						
					
					
						commit
						bf4dca8bc8
					
				| 
						 | 
					@ -10,18 +10,12 @@ jobs:
 | 
				
			||||||
    permissions:
 | 
					    permissions:
 | 
				
			||||||
      contents: read
 | 
					      contents: read
 | 
				
			||||||
      packages: write
 | 
					      packages: write
 | 
				
			||||||
      id-token: write
 | 
					 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - uses: actions/checkout@v4
 | 
					      - name: create .npmrc
 | 
				
			||||||
 | 
					        run: 'echo -e "//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN\n@preservetube:registry=https://npm.pkg.github.com/" > .secret_npmrc'
 | 
				
			||||||
      - uses: actions/setup-node@v4
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          node-version: "20"
 | 
					 | 
				
			||||||
          registry-url: "https://npm.pkg.github.com"
 | 
					 | 
				
			||||||
          scope: "@${{ github.repository_owner }}"
 | 
					 | 
				
			||||||
        env:
 | 
					        env:
 | 
				
			||||||
          NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Login to GitHub Container Registry
 | 
					      - name: Login to GitHub Container Registry
 | 
				
			||||||
        uses: docker/login-action@v2
 | 
					        uses: docker/login-action@v2
 | 
				
			||||||
| 
						 | 
					@ -36,7 +30,8 @@ jobs:
 | 
				
			||||||
      - name: Build and push
 | 
					      - name: Build and push
 | 
				
			||||||
        uses: docker/build-push-action@v5
 | 
					        uses: docker/build-push-action@v5
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
 | 
					          context: .
 | 
				
			||||||
          push: true
 | 
					          push: true
 | 
				
			||||||
          tags: ghcr.io/${{ github.repository }}:latest
 | 
					          secret-files: |
 | 
				
			||||||
        env:
 | 
					            "npmrc=./.secret_npmrc"
 | 
				
			||||||
          NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					          tags: ghcr.io/${{ github.repository }}:latest
 | 
				
			||||||
		Loading…
	
		Reference in New Issue