From c9f9290f7d1137ccb618c97e4a4204615725ee87 Mon Sep 17 00:00:00 2001 From: andrewmatilde Date: Fri, 13 May 2022 10:23:29 +0800 Subject: [PATCH] fix-release:update release Signed-off-by: andrewmatilde --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5328101..6425c3d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -68,9 +68,9 @@ jobs: distro: ubuntu20.04 githubToken: ${{ secrets.GITHUB_TOKEN }} setup: | - mkdir -p "/tproxy" + mkdir -p $HOME/tproxy dockerRunArgs: | - --volume "/tproxy:/tproxy" + --volume "$HOME/tproxy:/tproxy" run: | apt update apt install build-essential ${{ matrix.cc }} curl git pkg-config -y @@ -87,6 +87,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ needs.create_release.outputs.upload_url }} - asset_path: /tproxy/tproxy-${{ matrix.target }}.tar.gz + asset_path: $HOME/tproxy-${{ matrix.target }}.tar.gz asset_name: tproxy-${{ matrix.target }}.tar.gz asset_content_type: application/zip \ No newline at end of file