diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index de26453b..ab891ebb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -125,7 +125,13 @@ jobs: - name: Package run: tar -zcvf x-ui-linux-${{ matrix.platform }}.tar.gz x-ui - + + - name: Upload files to Artifacts + uses: actions/upload-artifact@v4 + with: + name: x-ui-linux-${{ matrix.platform }}.tar.gz + path: ./x-ui-linux-${{ matrix.platform }}.tar.gz + - name: Upload files to GH release uses: svenstaro/upload-release-action@v2 with: |
