From 7d806ad1922f801ea1eff78f83ad2d500290c22c Mon Sep 17 00:00:00 2001 From: George Gebbett Date: Thu, 23 Nov 2023 14:15:02 +0200 Subject: [PATCH] Upgrade terraform provider stripe to v1.9.2 (#4) * make tfgen * make build_sdks * add to action * add to action * add to action --- .github/actions/pulumi-publish/action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/actions/pulumi-publish/action.yml b/.github/actions/pulumi-publish/action.yml index c7b68ec..d0e7b8d 100644 --- a/.github/actions/pulumi-publish/action.yml +++ b/.github/actions/pulumi-publish/action.yml @@ -36,11 +36,18 @@ runs: node-version: ${{ env.NODEVERSION }} registry-url: https://registry.npmjs.org - name: Download nodejs SDK + id: download if: inputs.sdk == 'nodejs' || inputs.sdk == 'all' uses: actions/download-artifact@v2 with: name: nodejs-sdk.tar.gz path: ${{ github.workspace }}/sdk/ + - name: 'Echo download path' + shell: bash + run: echo ${{steps.download.outputs.download-path}} + - name: 'Echo download path' + shell: bash + run: ls ${{steps.download.outputs.download-path}} - name: Uncompress nodejs SDK if: inputs.sdk == 'nodejs' || inputs.sdk == 'all' run: tar -zxf ${{ github.workspace }}/sdk/nodejs-sdk.tar.gz -C