We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d580ded + f4a6a10 commit 5eccb61Copy full SHA for 5eccb61
.github/workflows/module_acceptance.yml
@@ -140,7 +140,12 @@ jobs:
140
141
- name: "Install Puppet agent"
142
run: |
143
- bundle exec rake 'litmus:install_agent[${{ matrix.collection }}]'
+ if [[ "${{ matrix.collection.version }}" ]] ; then
144
+ export PUPPET_VERSION=${{ matrix.collection.version }}
145
+ bundle exec rake 'litmus:install_agent[${{ matrix.collection.collection }}]'
146
+ else
147
+ bundle exec rake 'litmus:install_agent[${{ matrix.collection }}]'
148
+ fi
149
150
- name: "Install module"
151
0 commit comments