This commit is contained in:
Vadim 2023-09-02 11:40:17 +02:00
parent deedafa236
commit 4248b6d897

View file

@ -23,12 +23,12 @@ jobs:
steps: steps:
- name: Connect private iap package - name: Connect private iap package
uses: webfactory/ssh-agent@v0.8.0 uses: webfactory/ssh-agent@v0.8.0
if: !env.STUB_IAP if: ${{ !env.STUB_IAP }}
with: with:
ssh-private-key: ${{ secrets.M3_LIGHTMETER_IAP_KEY }} ssh-private-key: ${{ secrets.M3_LIGHTMETER_IAP_KEY }}
- name: Override iap package with stub - name: Override iap package with stub
if: env.STUB_IAP if: ${{ env.STUB_IAP }}
run: ./.github/scripts/stub_iap.sh run: ./.github/scripts/stub_iap.sh
shell: bash shell: bash