softprops / action-gh-release

📦 :octocat: GitHub Action for creating GitHub Releases
MIT License
3.91k stars 440 forks source link

[Question]Combined zip file generated instead of individual links #378

Open bigcat26 opened 11 months ago

bigcat26 commented 11 months ago

Hi, I've use the plugin to create a release for my github project. I wrote the config as follows:

      - name: Release assets
        uses: softprops/action-gh-release@v1
        with:
          name: ${{ env.RELEASE }}
          tag_name: ${{ env.RELEASE }}
          files: artifact/*.zip

There were two zip files in the artifact directory. What I expected was that it would create one download link for each zip file found in the artifact directory. However, only one link was generated, which was a zip file containing all of the original zip files packed together.