diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 67ba541b..09d97337 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -102,25 +102,25 @@ jobs: # release RHEL package - name: Package RPM (RHEL-family) - if: github.event.inputs.release_tag != '' - run: | - chmod 755 package-rhel.sh - # Build for both x86_64 and aarch64 in one go (explicit version passed; no --buildfrom) - ./package-rhel.sh "${{ github.event.inputs.release_tag }}" --arch all + if: github.event.inputs.release_tag != '' + run: | + chmod 755 package-rhel.sh + # Build for both x86_64 and aarch64 in one go (explicit version passed; no --buildfrom) + ./package-rhel.sh "${{ github.event.inputs.release_tag }}" --arch all - name: Upload RPM artifacts - if: github.event.inputs.release_tag != '' - uses: actions/upload-artifact@v4.6.2 - with: - name: v2rayN-rpm - path: | - ${{ env.HOME }}/rpmbuild/RPMS/**/*.rpm + if: github.event.inputs.release_tag != '' + uses: actions/upload-artifact@v4.6.2 + with: + name: v2rayN-rpm + path: | + ${{ env.HOME }}/rpmbuild/RPMS/**/*.rpm - name: Upload RPMs to release - uses: svenstaro/upload-release-action@v2 - if: github.event.inputs.release_tag != '' - with: - file: ${{ env.HOME }}/rpmbuild/RPMS/**/*.rpm - tag: ${{ github.event.inputs.release_tag }} - file_glob: true - prerelease: true + uses: svenstaro/upload-release-action@v2 + if: github.event.inputs.release_tag != '' + with: + file: ${{ env.HOME }}/rpmbuild/RPMS/**/*.rpm + tag: ${{ github.event.inputs.release_tag }} + file_glob: true + prerelease: true