jaxxstorm / action-install-gh-release

GitHub Action to install the Github Release binaries
Apache License 2.0
67 stars 29 forks source link

can i specify multiple repos in one step? #29

Closed 0xbe1 closed 1 year ago

0xbe1 commented 2 years ago

instead of

steps:
      - name: install substreams cli
        uses: jaxxstorm/action-install-gh-release@v1.7.1
        with:
          repo: streamingfast/substreams
          cache: enable
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      - name: install buf
        uses: jaxxstorm/action-install-gh-release@v1.7.1
        with:
          repo: bufbuild/buf
          cache: enable

can I do the below instead?

      - name: install substreams cli
        uses: jaxxstorm/action-install-gh-release@v1.7.1
        with:
          - repo: streamingfast/substreams
            cache: enable
          - repo: bufbuild/buf
            cache: enable
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

thanks!

jaxxstorm commented 1 year ago

Not at this time, and considering the ease of steps I'm not likely to refactor this way