diff --git a/.github/workflows/publish-go-nightly-task.yml b/.github/workflows/publish-go-nightly-task.yml index 52ccdce2ba5..12c4f33c609 100644 --- a/.github/workflows/publish-go-nightly-task.yml +++ b/.github/workflows/publish-go-nightly-task.yml @@ -230,6 +230,9 @@ jobs: - create-windows-installer steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Download artifact uses: actions/download-artifact@v3 with: @@ -243,6 +246,8 @@ jobs: version: 3.x - name: Collect proto files + env: + NIGHTLY: true run: task protoc:collect - name: Create checksum file diff --git a/.github/workflows/release-go-task.yml b/.github/workflows/release-go-task.yml index 1924c110d67..b059d60925d 100644 --- a/.github/workflows/release-go-task.yml +++ b/.github/workflows/release-go-task.yml @@ -235,6 +235,9 @@ jobs: - create-windows-installer steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Download artifact uses: actions/download-artifact@v3 with: diff --git a/Taskfile.yml b/Taskfile.yml index a793036b136..a143e51a286 100755 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -236,7 +236,7 @@ tasks: desc: Create a zip file containing all .proto files in DIST_DIR dir: rpc cmds: - - mkdir ../{{.DIST_DIR}} + - mkdir --parents ../{{.DIST_DIR}} - zip -r ../{{.DIST_DIR}}/{{.PROJECT_NAME}}_{{.VERSION}}_proto.zip * -i \*.proto protoc:format: