Skip to content

Commit

Permalink
fix: fixing download artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardoc7 committed Apr 27, 2024
1 parent ff90009 commit a32c5ee
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: test
run: |
echo "PLUGIN_ARCHIVE_FULL=${{ env.PLUGIN_ARCHIVE_FULL }}"
echo "PLUGIN_ARCHIVE_NAME=${{ env.PLUGIN_ARCHIVE_NAME }}"
- name: Download release url
if: contains(github.ref, '/tags/v')
Expand All @@ -438,6 +443,11 @@ jobs:
name: release_upload_url.txt
path: ./

- name: Download artifact
uses: actions/download-artifact@v3
with:
name: ${{env.PLUGIN_ARCHIVE_NAME}}

- name: Set Release Var
if: contains(github.ref, '/tags/v')
shell: pwsh
Expand Down

0 comments on commit a32c5ee

Please sign in to comment.