Skip to content

Commit

Permalink
Rename artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
kareefardi committed Apr 29, 2024
1 parent 6f1c9f0 commit 2e783dd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/run_IP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,19 @@ jobs:
if: ${{ inputs.is-ip }}
run: |
git clone https://github.com/efabless/EF_UVM.git ${{ env.EF_UVM_PATH }}
- name: Set Artifact Name
id: set_artifact_name
run: |
wrap_name () {
echo "❲$1❳"
}
artifact_name=$(wrap_name "ws")-$(wrap_name "${{ inputs.name }}")
echo "artifact_name=$artifact_name" >> GITHUB_OUTPUT
- name: Upload Workspace
uses: actions/upload-artifact@v4
with:
path: ${{ env.MY_WORKSPACE }}
name: ${{ inputs.name }}-workspace
name: ${{ steps.set_artifact_name.outputs.artifact_name }}

Prepare-Tests-Matrix:
needs: ["Setup-Work-Space"]
Expand Down

0 comments on commit 2e783dd

Please sign in to comment.