jurplel / install-qt-action

Install Qt on your Github Actions workflows with just one simple action
MIT License
459 stars 78 forks source link

`archives` not accepted as an input #145

Closed MehdiChinoune closed 2 years ago

MehdiChinoune commented 2 years ago
      - name: Install Qt
        uses: jurplel/install-qt-action@v2
        with:
          version: ${{ env.QT_VER }}
          cached: ${{ steps.cache-qt.outputs.cache-hit }}
          dir: ${{ github.workspace }}/Qt
          archives: qtbase qtsvg qttools qttranslations

Output:

Warning: Unexpected input(s) 'archives', valid inputs are ['dir', 'version', 'host', 'target', 'arch', 'install-deps', 'modules', 'cached', 'setup-python', 'tools', 'set-env', 'tools-only', 'aqtversion', 'py7zrversion', 'extra']
MehdiChinoune commented 2 years ago

It is not part of the latest release

ddalcino commented 2 years ago

Have you tried using the v3 branch? The archives feature was added about six months after the latest v2 release.

MehdiChinoune commented 2 years ago

Have you tried using the v3 branch? The archives feature was added about six months after the latest v2 release.

I know, but How? the latest version is at 2.14, and replacing @v2 with @v3 won't work.

ddalcino commented 2 years ago

Well, if using @v3 doesn't work, that's a problem. The README should definitely be updated to show you how to turn this feature on.

Have you tried @master, or @7933445fc5670b1ef4eeedb981cf8f14647f2e1a?

Reference for usage of uses: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsuses

MehdiChinoune commented 2 years ago

Well, if using @v3 doesn't work, that's a problem. The README should definitely be updated to show you how to turn this feature on.

Have you tried @master, or @7933445fc5670b1ef4eeedb981cf8f14647f2e1a?

Reference for usage of uses: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsuses

I reported the bug so people won't use those tricks.

MehdiChinoune commented 2 years ago

It seems like the repi owner is not active in github since about two months. Maybe he is dead or something!

ddalcino commented 2 years ago

It seems like the repi owner is not active in github since about two months. Maybe he is dead or something!

@jurplel is probably just busy with real life or something. It took him 3 or 4 months to merge some PRs I filed last year, so this kind of absence is ordinary. Open source can be a lot of work, and we should be patient and understanding. Perhaps he could use some help from a co-maintainer?

jurplel commented 2 years ago

indeed i am busy with life! I am very busy with college courses + TAing, so I don't have a lot of time to dedicate to open source stuff.

I will definitely get install-qt-action back into shape this summer. My finals week is this week so hopefully imminently.

So yeah, decidedly not dead.

voltrare commented 2 years ago

wait so how to use the archives options?