From c815ae25ee82b03220422aca336636fdfc4fc42f Mon Sep 17 00:00:00 2001 From: Nitamet <13808955+heh-mda@users.noreply.github.com> Date: Sun, 30 Jul 2023 22:15:37 +0300 Subject: [PATCH] ci: fix push-update artifact downloading --- .github/workflows/push-update.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/push-update.yaml b/.github/workflows/push-update.yaml index 9c9d9d0..5f87150 100644 --- a/.github/workflows/push-update.yaml +++ b/.github/workflows/push-update.yaml @@ -32,14 +32,15 @@ jobs: github_token: ${{secrets.GITHUB_TOKEN}} workflow: release-app.yaml workflow_conclusion: success - path: ./binaries + path: ./artifact if_no_artifact_found: fail - - name: Rename executable to GOOS-GOARCH format + - name: Rename executables to GOOS-GOARCH format run: | - cd ./binaries + mkdir ./binaries + cd ./artifact/windows-amd64 ls -R - mv geemo.exe windows-amd64 + mv geemo.exe ../../binaries/windows-amd64 - name: Install go-selfupdate run: go install github.com/sanbornm/go-selfupdate/cmd/go-selfupdate@latest