Skip to content

Commit

Permalink
fix(build): fix up build
Browse files Browse the repository at this point in the history
  • Loading branch information
Umaaz committed Sep 10, 2024
1 parent 3205164 commit 48a8eea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/on_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ jobs:
- name: Upload agent to release
uses: svenstaro/upload-release-action@v2
with:
file: ./agent/target/agent-${VERSION}.jar
file: ./agent/target/agent-${{ github.ref_name }}.jar
asset_name: Deep Agent
tag: ${{ github.ref_name }}
overwrite: true

- name: Upload lite agent to release
uses: svenstaro/upload-release-action@v2
with:
file: ./agent/target/agent-${VERSION}-lite.jar
file: ./agent/target/agent-${{ github.ref_name }}-lite.jar
asset_name: Deep Lite Agent
tag: ${{ github.ref_name }}
overwrite: true
Expand Down

0 comments on commit 48a8eea

Please sign in to comment.