File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,10 @@ COPY ui/dist/. /usr/local/apache2/htdocs/bahmni/
1616
1717#  Download Person Management App
1818RUN  <<EOR
19-     LATEST_RELEASE=$(curl -L -s -H 'Accept: application/json'  https://github.com/Bahmni/person-management-app/releases/latest)
20-     LATEST_VERSION=$(echo $LATEST_RELEASE | sed -e 's/.*"tag_name":"\( [^"]*\) ".*/\1 /' )
21-     ARTIFACT_URL="https://github.com/Bahmni/person-management-app/releases/download/$LATEST_VERSION/person-management-app.zip" 
19+     RELEASE_URL="https://github.com/Bahmni/person-management-app/releases/tag/v-11" 
20+     RELEASE_TAG=$(curl -L -s -H 'Accept: application/json'  $RELEASE_URL)
21+     VERSION_TAG=$(echo $RELEASE_TAG | sed -e 's/.*"tag_name":"\( [^"]*\) ".*/\1 /' )
22+     ARTIFACT_URL="https://github.com/Bahmni/person-management-app/releases/download/$VERSION_TAG/person-management-app.zip" 
2223    wget $ARTIFACT_URL
2324    unzip person-management-app.zip -d /usr/local/apache2/htdocs/
2425    rm person-management-app.zip
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments