Skip to content

Commit 4ed828f

Browse files
committed
Fix package script path in release workflow
1 parent 8c30eae commit 4ed828f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ jobs:
5757
- name: Run package script
5858
id: package
5959
run: |
60-
chmod +x *.sh
61-
./package.sh full
60+
chmod +x scripts/dev/package.sh
61+
./scripts/dev/package.sh full
6262
BUILD_NR=$(grep 'BUILD =' build/_version.py | awk '{print $3}')
6363
echo "ZIP_NAME=dynatrace_snowflake_observability_agent-${{ steps.get_version.outputs.VERSION }}.${BUILD_NR}.zip" >> $GITHUB_OUTPUT
6464
echo "PDF_NAME=Dynatrace-Snowflake-Observability-Agent-${{ steps.get_version.outputs.VERSION }}.pdf" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)