File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,24 @@ jobs:
1111    name : Create Release with Artifacts 
1212    runs-on : ubuntu-latest 
1313    steps :
14-       - name : Show GitHub context 
15-         env :
16-           GITHUB_CONTEXT : ${{ toJson(github) }} 
17-         run : echo "$GITHUB_CONTEXT" 
14+ #       - name: Show GitHub context
15+ #         env:
16+ #           GITHUB_CONTEXT: ${{ toJson(github) }}
17+ #         run: echo "$GITHUB_CONTEXT"
1818
1919      - name : Download All Compiled Core Artifacts 
2020        uses : dawidd6/action-download-artifact@v3 
2121        with :
2222          workflow : build-cores.yml 
23-           commit : ${{ github.sha }} 
23+           commit : ${{ github.sha }} 
24+ 
25+       - name : Create Release 
26+         id : create_release 
27+         uses : softprops/action-gh-release@v2 
28+         env :
29+           GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} 
30+         with :
31+           tag_name : ${{ github.ref }} 
32+           name : Release ${{ github.ref_name }} 
33+           files : | 
34+             **/*.zip 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments