Skip to content

Commit

Permalink
Try downloading artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
alex1701c committed Oct 13, 2024
1 parent 2c5fa61 commit b8654a7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
- uses: actions/upload-artifact@v4
if: inputs.publish-version
with:
name: ${{ github.job }}
name: ${{ matrix.os.name }}-${{ matrix.plasma_version }}
path: ${{ steps.cpack.outputs.filepath }}

release:
Expand All @@ -146,6 +146,9 @@ jobs:
- name: Update Version in CMakeLists
run: |
sed -i -E "s/(set\s*\(\s*CMAKE_PROJECT_VERSION\s*\")[0-9]+\.[0-9]+\.[0-9]+(\")/\1${{ inputs.publish-version }}\2/" CMakeLists.txt
- uses: actions/download-artifact@v4
with:
path: binaries
- name: Create Tag
shell: bash
run: |
Expand All @@ -155,4 +158,6 @@ jobs:
git tag -a "${{ inputs.publish-version }}" -m "Release version ${{ inputs.publish-version }}"
git push
git push --tags
- run: find .
- run: exit 1

0 comments on commit b8654a7

Please sign in to comment.