Skip to content

Commit

Permalink
fix: github action upload file failed (#222)
Browse files Browse the repository at this point in the history

Co-authored-by: soulbird <[email protected]>
  • Loading branch information
soulbird and soulbird authored Jul 12, 2022
1 parent d229010 commit bdbd1b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ jobs:
uses: actions/[email protected]
with:
name: "apisix-${{ steps.tag_env.outputs.version}}-0.el7.x86_64.rpm"
path: "./apisix-${{ steps.tag_env.outputs.version}}-0.el7.x86_64.rpm"
path: "${{ env.VAR_RPM_WORKBENCH_DIR }}/apisix-${{ steps.tag_env.outputs.version}}-0.el7.x86_64.rpm"

- name: Upload apisix-base Artifact
if: ${{ startsWith(steps.tag_type.outputs.version, 'apisix-base/') }}
uses: actions/[email protected]
with:
name: "apisix-base-${{ steps.tag_env.outputs.version}}-0.el7.x86_64.rpm"
path: "./apisix-base-${{ steps.tag_env.outputs.version}}-0.el7.x86_64.rpm"
path: "${{ env.VAR_RPM_WORKBENCH_DIR }}/apisix-base-${{ steps.tag_env.outputs.version}}-0.el7.x86_64.rpm"

- name: Upload apisix-dashboard Artifact
if: ${{ startsWith(steps.tag_type.outputs.version, 'dashboard/') }}
Expand Down

0 comments on commit bdbd1b4

Please sign in to comment.