From ced80450feb91ad0301744f0adf65fcb7be08957 Mon Sep 17 00:00:00 2001 From: Bogdan Condurache Date: Mon, 13 Nov 2023 21:01:49 +0100 Subject: [PATCH] fix identation --- .github/workflows/publish-node.yaml | 56 ++++++++++++++--------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/publish-node.yaml b/.github/workflows/publish-node.yaml index 74d4220..eda69c8 100644 --- a/.github/workflows/publish-node.yaml +++ b/.github/workflows/publish-node.yaml @@ -41,32 +41,32 @@ jobs: name: binary-${{ matrix.os }} path: ./binaries/index-${{ matrix.os }}.node -publish: - needs: build - runs-on: ubuntu-latest + publish: + needs: build + runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Set up Node.js - uses: actions/setup-node@v2 - with: - node-version: 18 - registry-url: 'https://npm.pkg.github.com' - - - name: Download all artifacts - uses: actions/download-artifact@v2 - with: - path: ./artifacts - - - name: Prepare package - run: | - mkdir -p ./binaries - mv ./artifacts/binary-ubuntu-latest/index-ubuntu-latest.node ./binaries/ - mv ./artifacts/binary-windows-latest/index-windows-latest.node ./binaries/ - mv ./artifacts/binary-macos-latest/index-macos-latest.node ./binaries/ - - - name: Publish to GitHub Packages - run: npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + steps: + - uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: 18 + registry-url: 'https://npm.pkg.github.com' + + - name: Download all artifacts + uses: actions/download-artifact@v2 + with: + path: ./artifacts + + - name: Prepare package + run: | + mkdir -p ./binaries + mv ./artifacts/binary-ubuntu-latest/index-ubuntu-latest.node ./binaries/ + mv ./artifacts/binary-windows-latest/index-windows-latest.node ./binaries/ + mv ./artifacts/binary-macos-latest/index-macos-latest.node ./binaries/ + + - name: Publish to GitHub Packages + run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file