Skip to content

Commit 04771dd

Browse files
committed
Updates
1 parent 4e56445 commit 04771dd

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ on:
55
branches: [main]
66

77
jobs:
8-
sync:
9-
uses: ./.github/workflows/sync.yml
10-
secrets: inherit
8+
# sync:
9+
# uses: ./.github/workflows/sync.yml
10+
# secrets: inherit
1111

1212
package:
1313
uses: ./.github/workflows/package.yml
1414

15-
release:
16-
uses: ./.github/workflows/release.yml
17-
needs: package
15+
# release:
16+
# uses: ./.github/workflows/release.yml
17+
# needs: package

.github/workflows/package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
echo "Packaging $REPO_NAME version $PACKAGE_VERSION"
5050
5151
# Create zip one level up to avoid nesting
52-
cd ..
53-
zip -r "$PACKAGE_FILE" "$REPO_NAME" -x@"$GITHUB_WORKSPACE/$REPO_NAME/.zipignore"
52+
cd "$GITHUB_WORKSPACE"
53+
zip -r "$PACKAGE_FILE" "$REPO_NAME" -x@"$GITHUB_WORKSPACE/.zipignore"
5454
5555
# Move the zip back to workflow directory
5656
mv "$PACKAGE_FILE" "$GITHUB_WORKSPACE/"

0 commit comments

Comments
 (0)