Skip to content

Commit 2d703f5

Browse files
committed
Update github action latest release yml
1 parent 47ff84b commit 2d703f5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
GH_TOKEN: "${{ secrets.PAT }}"
4848
run: |
4949
LK_VERSION=$(cat /home/runner/work/_temp/_github_home/lkDist/release.txt | sed 's/-SNAPSHOT//g')
50-
cd /home/runner/work/_temp/_github_home/labkey_build/${LK_VERSION}/server/modules/DiscvrLabKeyModules
50+
cd /home/runner/work/_temp/_github_home/labkey_build/${LK_VERSION}/server/server/modules/DiscvrLabKeyModules
5151
COUNT=$(gh release list | grep 'latest' | wc -l)
5252
if [ $COUNT != '0' ];then gh release delete 'latest' --cleanup-tag -y; fi
5353

.github/workflows/build_latest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ jobs:
4242
env:
4343
GH_TOKEN: "${{ secrets.PAT }}"
4444
run: |
45-
cd /github/home/labkey_build/23.7/server/modules/DiscvrLabKeyModules
45+
LK_VERSION=$(cat /home/runner/work/_temp/_github_home/lkDist/release.txt | sed 's/-SNAPSHOT//g')
46+
cd /home/runner/work/_temp/_github_home/labkey_build/${LK_VERSION}/server/server/modules/DiscvrLabKeyModules
4647
COUNT=$(gh release list | grep 'latest' | wc -l)
4748
if [ $COUNT != '0' ];then gh release delete 'latest' --cleanup-tag -y; fi
4849

0 commit comments

Comments
 (0)