user989988
user989988

Reputation: 3736

Artifact structure of Build in GitHub Actions

I have the following steps to publish and upload some files to artifact:

   - name: dotnet publish FA1
     run: dotnet publish Service/FA1/FA1.csproj --configuration Release --output fa1_publish_output
       
    - name: dotnet publish FA2
      run: dotnet publish Service/FA2/FA2.csproj --configuration Release --output fa2_publish_output
    
    - name: publish files to artifact
      uses: actions/upload-artifact@v2
      with:
        name: ${{github.run_number}}
        path: |
          fa1_publish_output
          fa2_publish_output

The Build succeeded however after downloading the artifact, I see the following structure:

enter image description here

Is there a way to update the above code such that artifact will contain the following structure?

enter image description here

Upvotes: 0

Views: 817

Answers (1)

riQQ
riQQ

Reputation: 12733

If a wildcard pattern is used, the path hierarchy will be preserved after the first wildcard pattern.

source: https://github.com/actions/upload-artifact/tree/27bce4eee761b5bc643f46a8dfb41b430c8d05f6#upload-using-multiple-paths-and-exclusions

    - name: dotnet publish FA1
      run: dotnet publish Service/FA1/FA1.csproj --configuration Release --output upload/Function_Apps/fa1_publish_output
       
    - name: dotnet publish FA2
      run: dotnet publish Service/FA2/FA2.csproj --configuration Release --output upload/Function_Apps/fa2_publish_output
    
    - name: publish files to artifact
      uses: actions/upload-artifact@v2
      with:
        name: ${{github.run_number}}
        path: upload/**

Upvotes: 1

Related Questions