diff --git a/.github/workflows/build-datebadge-task.yml b/.github/workflows/build-datebadge-task.yml index 8f7f8f8d..6f12a28a 100644 --- a/.github/workflows/build-datebadge-task.yml +++ b/.github/workflows/build-datebadge-task.yml @@ -13,8 +13,7 @@ jobs: - name: Get current date step id: date - run: | - echo "date=$(date)" >> $GITHUB_OUTPUT + run: echo "date=$(date)" >> $GITHUB_OUTPUT - name: Build BYOB date badge step if: ${{ github.ref_name == 'main' }} diff --git a/.github/workflows/build-executable-task.yml b/.github/workflows/build-executable-task.yml index f205969c..4b7a900b 100644 --- a/.github/workflows/build-executable-task.yml +++ b/.github/workflows/build-executable-task.yml @@ -60,19 +60,19 @@ jobs: steps: - - name: Download matrix build artifacts step - uses: actions/download-artifact@v7 - with: - pattern: publish-* - merge-multiple: true - path: ${{ runner.temp }}/publish + - name: Download matrix build artifacts step + uses: actions/download-artifact@v7 + with: + pattern: publish-* + merge-multiple: true + path: ${{ runner.temp }}/publish - - name: Zip build output step - run: 7z a -t7z ${{ runner.temp }}/Console.7z ${{ runner.temp }}/publish/* + - name: Zip build output step + run: 7z a -t7z ${{ runner.temp }}/Console.7z ${{ runner.temp }}/publish/* - - name: Upload build artifacts step - id: artifact-upload-step - uses: actions/upload-artifact@v6 - with: - name: executable-build - path: ${{ runner.temp }}/Console.7z + - name: Upload build artifacts step + id: artifact-upload-step + uses: actions/upload-artifact@v6 + with: + name: executable-build + path: ${{ runner.temp }}/Console.7z diff --git a/.github/workflows/build-library-task.yml b/.github/workflows/build-library-task.yml index 57565ab0..53d4c28a 100644 --- a/.github/workflows/build-library-task.yml +++ b/.github/workflows/build-library-task.yml @@ -57,8 +57,7 @@ jobs: --skip-duplicate - name: Zip output step - run: | - 7z a -t7z ${{ runner.temp }}/Library.7z ${{ runner.temp }}/publish/* + run: 7z a -t7z ${{ runner.temp }}/Library.7z ${{ runner.temp }}/publish/* - name: Upload build artifacts step id: artifact-upload-step