Skip to content

Commit df7f703

Browse files
akovariclaude
andcommitted
Fix publish workflow for standalone repository
Remove incorrect working-directory directives that referenced sdk/java path which doesn't exist in the standalone SDK repository. The workflow runs directly in the repository root. Changes: - Remove working-directory: sdk/java from all workflow steps - Workflow now compatible with standalone repository structure 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5eef247 commit df7f703

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
run: echo "VERSION=${GITHUB_REF#refs/tags/java-v}" >> $GITHUB_OUTPUT
3030

3131
- name: Verify pom.xml version matches tag
32-
working-directory: sdk/java
3332
run: |
3433
POM_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
3534
if [ "$POM_VERSION" != "${{ steps.version.outputs.VERSION }}" ]; then
@@ -38,15 +37,12 @@ jobs:
3837
fi
3938
4039
- name: Test with Maven
41-
working-directory: sdk/java
4240
run: mvn clean test
4341

4442
- name: Build with Maven
45-
working-directory: sdk/java
4643
run: mvn clean package -DskipTests
4744

4845
- name: Publish to GitHub Packages
49-
working-directory: sdk/java
5046
run: mvn deploy -DskipTests
5147
env:
5248
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)