From b424e5b9107a9470739e9bf159c4212db3656da2 Mon Sep 17 00:00:00 2001 From: Caleb Foust Date: Thu, 31 Oct 2024 09:19:34 +0800 Subject: [PATCH] fix: assets cache path --- .github/goreleaser-for-darwin.yaml | 2 +- .github/goreleaser-for-linux.yaml | 2 +- .github/workflows/ci.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/goreleaser-for-darwin.yaml b/.github/goreleaser-for-darwin.yaml index 864c9322..e9c1b31a 100644 --- a/.github/goreleaser-for-darwin.yaml +++ b/.github/goreleaser-for-darwin.yaml @@ -55,7 +55,7 @@ archives: files: - LICENSE* - README* - - src: "dist/assets/*" + - src: "assets/dist/*" dst: "assets" brews: - skip_upload: true diff --git a/.github/goreleaser-for-linux.yaml b/.github/goreleaser-for-linux.yaml index b941a9c3..74a01940 100644 --- a/.github/goreleaser-for-linux.yaml +++ b/.github/goreleaser-for-linux.yaml @@ -59,7 +59,7 @@ archives: files: - LICENSE* - README* - - src: "dist/assets/*" + - src: "assets/dist/*" dst: "assets" brews: - skip_upload: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc62c95a..54b29778 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -144,7 +144,7 @@ jobs: uses: actions/download-artifact@v3 with: name: assets - path: ./dist/assets + path: ./assets/dist - uses: actions/setup-go@v4 with: