From 8e851207f9121f8b584e03b17346912e3d7cc22e Mon Sep 17 00:00:00 2001 From: GuillaumeFalourd Date: Mon, 17 Jun 2024 17:50:37 -0300 Subject: [PATCH] update workflows to test action --- .github/workflows/action-test-macos.yml | 2 +- .github/workflows/action-test-ubuntu.yml | 2 +- .github/workflows/action-test-windows.yml | 2 +- action.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/action-test-macos.yml b/.github/workflows/action-test-macos.yml index fe77b93..36d16cc 100644 --- a/.github/workflows/action-test-macos.yml +++ b/.github/workflows/action-test-macos.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run STK CLI installation - uses: ./ + uses: . with: client_id: ${{ secrets.CLIENT_ID }} client_key: ${{ secrets.CLIENT_KEY }} diff --git a/.github/workflows/action-test-ubuntu.yml b/.github/workflows/action-test-ubuntu.yml index ddb1505..86bbad4 100644 --- a/.github/workflows/action-test-ubuntu.yml +++ b/.github/workflows/action-test-ubuntu.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run STK CLI installation - uses: ./ + uses: . with: client_id: ${{ secrets.CLIENT_ID }} client_key: ${{ secrets.CLIENT_KEY }} diff --git a/.github/workflows/action-test-windows.yml b/.github/workflows/action-test-windows.yml index 7fcd550..d574014 100644 --- a/.github/workflows/action-test-windows.yml +++ b/.github/workflows/action-test-windows.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run STK CLI installation - uses: ./ + uses: . with: client_id: ${{ secrets.CLIENT_ID }} client_key: ${{ secrets.CLIENT_KEY }} diff --git a/action.yml b/action.yml index a7de795..2f9ec6b 100644 --- a/action.yml +++ b/action.yml @@ -20,7 +20,6 @@ runs: run: echo 🤖 OS runner is $(uname) shell: bash - - name: Install STK CLI run: | if [[ "$(uname)" = "Linux" ]]; then @@ -53,7 +52,8 @@ runs: shell: bash - name: Show STK CLI version - run: stk --version + run: stk --version + shell: bash branding: icon: 'terminal'