Skip to content

Upload files with specific file extensions #27087

Answered by Simran-B
graysuit asked this question in Actions
Discussion options

You must be logged in to vote

Looking at the workflow, I realized that it uses a super outdated version of the actions/upload-artifacts action. It probably doesn’t support globbing.

    - name: Upload Artifact
      uses: actions/upload-artifact@v1.0.0
      with:
       name: Releases
       path: '**/*.exe'

Replace it with the following code that changes the version to v2 (and fixes the indentation):

    - name: Upload Artifact
      uses: actions/upload-artifact@v2
      with:
        name: Releases
        path: '**/*.exe'

Replies: 8 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Actions Build, test, and automate your deployment pipeline with world-class CI/CD Product Feedback
4 participants