Skip to content

Commit

Permalink
try fix upload and change rel name
Browse files Browse the repository at this point in the history
  • Loading branch information
Green-Sky committed Jan 19, 2024
1 parent eb66663 commit 4a93f85
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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"

0 comments on commit 4a93f85

Please sign in to comment.