From 2bb7ebcb5821e364463fc9d6bf7365985d601c96 Mon Sep 17 00:00:00 2001 From: ValKmjolnir Date: Thu, 16 May 2024 00:08:09 +0800 Subject: [PATCH] :bug: fix syntax error in yaml --- .github/workflows/c-cpp.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index ec107a0..f7cd476 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -39,13 +39,13 @@ jobs: # files: | # nasal-Darwin.tar - name: Release - uses: softprops/action-gh-release@v2.0.5 - if: startsWith(github.ref, 'refs/tags/') - with: - name: macOS nightly build - tag_name: next_macOS - files: | - nasal-Darwin.tar + uses: softprops/action-gh-release@v2.0.5 + if: startsWith(github.ref, 'refs/tags/') + with: + name: macOS nightly build + tag_name: next_macOS + files: | + nasal-Darwin.tar linux-x86_64-build: runs-on: ubuntu-latest @@ -76,10 +76,10 @@ jobs: # files: | # nasal-Linux.tar - name: Release - uses: softprops/action-gh-release@v2.0.5 - if: startsWith(github.ref, 'refs/tags/') - with: - name: linux nightly build - tag_name: next_linux_x86_64 - files: | - nasal-Linux.tar + uses: softprops/action-gh-release@v2.0.5 + if: startsWith(github.ref, 'refs/tags/') + with: + name: linux nightly build + tag_name: next_linux_x86_64 + files: | + nasal-Linux.tar