From 51ebc31ee565f7f5d325494cf0400811058b6172 Mon Sep 17 00:00:00 2001 From: McCallisterRomer Date: Thu, 30 May 2024 16:25:41 -0500 Subject: [PATCH] indent again --- .github/workflows/build-artifacts.yml | 52 +++++++++++++-------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/build-artifacts.yml b/.github/workflows/build-artifacts.yml index 5b7853d..155cd98 100644 --- a/.github/workflows/build-artifacts.yml +++ b/.github/workflows/build-artifacts.yml @@ -130,29 +130,29 @@ jobs: path: VulkanSDK publish: - - name: Draft Release - runs-on: ubuntu-latest - needs: build - steps: - - name: Download Artifacts - uses: actions/download-artifact@v2 - with: - pattern: vulkanCI-*-.zip - path: artifacts - merge-multiple: true - - - name: Create Release - env: - GH_TOKEN: ${{ github.token }} - GH_REPO: NcStudios/VulkanCI - run: | - ls -R artifacts - - gh release create ${{ inputs.releaseTag }} \ - --draft \ - --title "VulkanCI ${{ inputs.releaseTag }}" \ - --generate-notes \ - - for file in artifacts/*; do - gh release upload ${{ inputs.releaseTag }} $file - done + name: Draft Release + runs-on: ubuntu-latest + needs: build + steps: + - name: Download Artifacts + uses: actions/download-artifact@v2 + with: + pattern: vulkanCI-*-.zip + path: artifacts + merge-multiple: true + + - name: Create Release + env: + GH_TOKEN: ${{ github.token }} + GH_REPO: NcStudios/VulkanCI + run: | + ls -R artifacts + + gh release create ${{ inputs.releaseTag }} \ + --draft \ + --title "VulkanCI ${{ inputs.releaseTag }}" \ + --generate-notes \ + + for file in artifacts/*; do + gh release upload ${{ inputs.releaseTag }} $file + done