From a25e02aee33a704e5bc758e1bd662b07e56ee2df Mon Sep 17 00:00:00 2001 From: Yato <54373229+SeakMengs@users.noreply.github.com> Date: Sun, 17 Sep 2023 15:43:49 +0700 Subject: [PATCH] fix miss indentation under jobs --- .github/workflows/release.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 856c386..3bb63a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,22 +70,22 @@ jobs: See the assets to download this version and install. releaseDraft: true prerelease: false -update: - needs: release - runs-on: macos-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 + update: + needs: release + runs-on: macos-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 - - name: Node.js setup - uses: actions/setup-node@v3 - # NOTE: enterprise developers may hard code a version - with: - node-version: latest - - - run: npm install + - name: Node.js setup + uses: actions/setup-node@v3 + # NOTE: enterprise developers may hard code a version + with: + node-version: latest + + - run: npm install - - name: Create Update Json - run: npm update - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + - name: Create Update Json + run: npm update + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file