diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6fbce358..15128cb7 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -39,14 +39,14 @@ jobs: make - name: Upload Build Artifacts - if: ${{ matrix.os }} == 'ubuntu-20.04' + if: matrix.os == 'ubuntu-20.04' uses: actions/upload-artifact@v3 with: name: uuu path: ./build/uuu/uuu - name: Create or Update Release - if: ${{ matrix.os }} == 'ubuntu-20.04' && ${{ github.ref_type }} == 'tag' + if: matrix.os == 'ubuntu-20.04' && github.ref_type == 'tag' uses: ncipollo/release-action@v1 with: name: Release ${{ github.ref_name }} diff --git a/.github/workflows/build_arm.yaml b/.github/workflows/build_arm.yaml index d4377506..7c0958a1 100644 --- a/.github/workflows/build_arm.yaml +++ b/.github/workflows/build_arm.yaml @@ -78,7 +78,7 @@ jobs: path: uuu_${{ matrix.arch }} - name: Create or Update Release - if: ${{ github.ref_type }} == 'tag' + if: github.ref_type == 'tag' uses: ncipollo/release-action@v1 with: name: Release ${{ github.ref_name }} diff --git a/.github/workflows/doc.yaml b/.github/workflows/doc.yaml index 6ac5324d..a27bad1c 100644 --- a/.github/workflows/doc.yaml +++ b/.github/workflows/doc.yaml @@ -44,7 +44,7 @@ jobs: path: wiki/UUU.pdf - name: Create or Update Release - if: ${{ github.ref_type }} == 'tag' + if: github.ref_type == 'tag' uses: ncipollo/release-action@v1 with: name: Release ${{ github.ref_name }} diff --git a/.github/workflows/macOS.yaml b/.github/workflows/macOS.yaml index 9fb12344..e9a655ef 100644 --- a/.github/workflows/macOS.yaml +++ b/.github/workflows/macOS.yaml @@ -40,7 +40,7 @@ jobs: path: uuu/uuu - name: Create or Update Release - if: ${{ github.ref_type }} == 'tag' + if: github.ref_type == 'tag' uses: ncipollo/release-action@v1 with: name: Release ${{ github.ref_name }} diff --git a/.github/workflows/tar.yaml b/.github/workflows/tar.yaml index 794a6f48..77aff773 100644 --- a/.github/workflows/tar.yaml +++ b/.github/workflows/tar.yaml @@ -39,7 +39,7 @@ jobs: path: uuu_source-${{ github.ref_name }}.tar.gz - name: Create or Update Release - if: ${{ github.ref_type }} == 'tag' + if: github.ref_type == 'tag' uses: ncipollo/release-action@v1 with: name: Release ${{ github.ref_name }} diff --git a/.github/workflows/win.yaml b/.github/workflows/win.yaml index 810c5917..fd55969c 100644 --- a/.github/workflows/win.yaml +++ b/.github/workflows/win.yaml @@ -43,7 +43,7 @@ jobs: path: msvc/x64/Release/uuu.exe - name: Create or Update Release - if: matrix.configuration == 'Release' && matrix.platform == 'x64' && ${{ github.ref_type }} == 'tag' + if: matrix.configuration == 'Release' && matrix.platform == 'x64' && github.ref_type == 'tag' uses: ncipollo/release-action@v1 with: name: Release ${{ github.ref_name }}