From 2d4f872b82e3b5ea409105d69df25a27e1ec58bb Mon Sep 17 00:00:00 2001 From: chaos-zhu Date: Fri, 16 Aug 2024 11:43:01 +0800 Subject: [PATCH] =?UTF-8?q?:construction=5Fworker:=20=E7=9B=91=E6=8E=A7?= =?UTF-8?q?=E5=AE=A2=E6=88=B7=E7=AB=AF=E8=87=AA=E5=8A=A8=E5=8C=96=E6=9E=84?= =?UTF-8?q?=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/client-builder.yml | 12 ++++++------ .github/workflows/docker-builder.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/client-builder.yml b/.github/workflows/client-builder.yml index e045552..5222662 100644 --- a/.github/workflows/client-builder.yml +++ b/.github/workflows/client-builder.yml @@ -1,4 +1,4 @@ -name: Build and Upload to Release +name: Build Client to Release on: push: @@ -22,15 +22,15 @@ jobs: - name: Install dependencies run: npm install - working-directory: clients + working-directory: client - name: Build for Linux x86 run: npm run pkglinux:x86 - working-directory: clients + working-directory: client - name: Build for Linux ARM64 run: npm run pkglinux:arm - working-directory: clients + working-directory: client - name: Get the latest release ID id: get_release @@ -42,7 +42,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: https://uploads.github.com/repos/${{ github.repository }}/releases/${{ env.RELEASE_ID }}/assets - asset_path: clients/dist/easynode-client-x86 + asset_path: client/dist/easynode-client-x86 asset_name: easynode-client-x86 asset_content_type: application/octet-stream overwrite: true @@ -53,7 +53,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: https://uploads.github.com/repos/${{ github.repository }}/releases/${{ env.RELEASE_ID }}/assets - asset_path: clients/dist/easynode-client-arm64 + asset_path: client/dist/easynode-client-arm64 asset_name: easynode-client-arm64 asset_content_type: application/octet-stream overwrite: true diff --git a/.github/workflows/docker-builder.yml b/.github/workflows/docker-builder.yml index 7434b01..fc34def 100644 --- a/.github/workflows/docker-builder.yml +++ b/.github/workflows/docker-builder.yml @@ -1,4 +1,4 @@ -name: Docker Build and Push +name: Build Server to DockerHub on: release: