Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
richardfan1126 committed Mar 4, 2024
2 parents ad64c38 + 85f4b8d commit 0d9c21e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,13 @@ runs:
EIF_INFO_FILE_NAME: ${{ inputs.eif-info-file-name }}
ARTIFACT_TAG: ${{ inputs.artifact-tag }}
run: |
mv "${EIF_FILE_PATH}" "${EIF_FILE_NAME}"
mv "${EIF_INFO_PATH}" "${EIF_INFO_FILE_NAME}"
WORKDIR="${{ github.action_path }}/artifact-push/"
mkdir ${WORKDIR}
cd ${WORKDIR}
cp "${EIF_FILE_PATH}" "${WORKDIR}/${EIF_FILE_NAME}"
cp "${EIF_INFO_PATH}" "${WORKDIR}/${EIF_INFO_FILE_NAME}"
mkdir tmp/
Expand Down

0 comments on commit 0d9c21e

Please sign in to comment.