This repository was archived by the owner on Dec 4, 2023. It is now read-only.
  
  
  
  
    
    
    
      
    
  
  
    
File tree Expand file tree Collapse file tree 5 files changed +34
-34
lines changed Expand file tree Collapse file tree 5 files changed +34
-34
lines changed Original file line number Diff line number Diff line change 11---
2- minVersion : " 0.14 .0" 
2+ minVersion : " 0.15 .0" 
33github :
44  owner : getsentry 
55  repo : sentry-netlify-build-plugin 
66changelogPolicy : none 
7- preReleaseCommand : bash scripts/craft-pre-release.sh 
87statusProvider :
98  name : github 
109artifactProvider :
Original file line number Diff line number Diff line change 1+ name : Build 
2+ on :
3+   push :
4+     branches :
5+       - master 
6+       - release/** 
7+   pull_request :
8+ 
9+ jobs :
10+   build :
11+     name : Build 
12+     runs-on : ubuntu-latest 
13+     timeout-minutes : 15 
14+     steps :
15+       - uses : actions/checkout@v2 
16+       - uses : actions/setup-node@v1 
17+       - uses : actions/cache@v2 
18+         id : cache-deps 
19+         with :
20+           path : | 
21+             **/node_modules 
22+ key : ${{ hashFiles('**/package-lock.json') }} 
23+       - name : Install 
24+         if : steps.cache-deps.outputs.cache-hit != 'true' 
25+         run : npm ci 
26+       - name : Pack 
27+         run : npm pack 
28+       - name : Upload Artifacts 
29+         uses : actions/upload-artifact@v2 
30+         with :
31+           name : ${{ github.sha }} 
32+           path : | 
33+             **/*.tgz 
Load Diff This file was deleted. 
File renamed without changes.
File renamed without changes.
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments