Update build-linux.yml

This commit is contained in:
JieXu 2025-08-19 20:08:09 +08:00 committed by GitHub
parent de36629076
commit 9d2d126bed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -100,27 +100,27 @@ jobs:
file_glob: true file_glob: true
prerelease: true prerelease: true
# release RHEL package # release RHEL package
- name: Package RPM (RHEL-family) - name: Package RPM (RHEL-family)
if: github.event.inputs.release_tag != '' if: github.event.inputs.release_tag != ''
run: | run: |
chmod 755 package-rhel.sh chmod 755 package-rhel.sh
# Build for both x86_64 and aarch64 in one go (explicit version passed; no --buildfrom) # 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 ./package-rhel.sh "${{ github.event.inputs.release_tag }}" --arch all
- name: Upload RPM artifacts - name: Upload RPM artifacts
if: github.event.inputs.release_tag != '' if: github.event.inputs.release_tag != ''
uses: actions/upload-artifact@v4.6.2 uses: actions/upload-artifact@v4.6.2
with: with:
name: v2rayN-rpm name: v2rayN-rpm
path: | path: |
${{ env.HOME }}/rpmbuild/RPMS/**/*.rpm ${{ env.HOME }}/rpmbuild/RPMS/**/*.rpm
- name: Upload RPMs to release - name: Upload RPMs to release
uses: svenstaro/upload-release-action@v2 uses: svenstaro/upload-release-action@v2
if: github.event.inputs.release_tag != '' if: github.event.inputs.release_tag != ''
with: with:
file: ${{ env.HOME }}/rpmbuild/RPMS/**/*.rpm file: ${{ env.HOME }}/rpmbuild/RPMS/**/*.rpm
tag: ${{ github.event.inputs.release_tag }} tag: ${{ github.event.inputs.release_tag }}
file_glob: true file_glob: true
prerelease: true prerelease: true