From 5fa9030976ffa986147b124fd6a45b44e14c7a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A1=B0=EC=9C=A0=EC=A7=84?= Date: Thu, 1 Aug 2024 13:03:29 +0900 Subject: [PATCH] feat: update pipeline --- .github/workflows/ci-cd.yaml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci-cd.yaml b/.github/workflows/ci-cd.yaml index 7ce0b86..8609a53 100644 --- a/.github/workflows/ci-cd.yaml +++ b/.github/workflows/ci-cd.yaml @@ -29,19 +29,19 @@ jobs: run: yarn compile working-directory: ./fosslight-scanner -- name: Install vsce - run: npm install -g @vscode/vsce - - - name: Package the extension - env: - VSCE_PAT: ${{ secrets.VSCE_PAT }} - run: | - vsce package --allow-missing-repository - working-directory: ./fosslight-scanner - - - name: Publish the extension - env: - VSCE_PAT: ${{ secrets.VSCE_PAT }} - run: | - echo $VSCE_PAT | vsce publish --pat $VSCE_PAT - working-directory: ./fosslight-scanner + - name: Install vsce + run: npm install -g @vscode/vsce + + - name: Package the extension + env: + VSCE_PAT: ${{ secrets.VSCE_PAT }} + run: | + vsce package --allow-missing-repository + working-directory: ./fosslight-scanner + + - name: Publish the extension + env: + VSCE_PAT: ${{ secrets.VSCE_PAT }} + run: | + echo $VSCE_PAT | vsce publish --pat $VSCE_PAT + working-directory: ./fosslight-scanner