diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d1105b0..846490d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -127,7 +127,9 @@ jobs: - name: Download artifacts id: download-artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 + with: + path: ./artifacts/ - name: Create release env: @@ -137,7 +139,7 @@ jobs: run: | gh release create "$tag" \ --repo="$GITHUB_REPOSITORY" \ - --title="${GITHUB_REPOSITORY#*/} ${tag#v} nightly" \ + --title="nightly ${tag#v}" \ --generate-notes \ --prerelease @@ -147,5 +149,5 @@ jobs: tag: ${{ steps.tag.outputs.name }} shell: bash run: | - gh release upload "$tag" ./artifact \ + gh release upload "$tag" ./artifacts/ \ --repo="$GITHUB_REPOSITORY"