Skip to content

Commit 291883e

Browse files
authored
Update publish.yml : bugfix folder name
1 parent 7c781d5 commit 291883e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
echo "::group::Copy _invariant to all language directories, package them"
3838
SRC_DIR="_invariant"
3939
mkdir -p $SRC_DIR
40-
mkdir -p output
40+
mkdir -p _output
4141
echo "::endgroup::"
4242
4343
for dir in */ ; do
@@ -52,7 +52,7 @@ jobs:
5252
cp -r -T -v "$SRC_DIR"/. "$dir"/
5353
cd $dir
5454
echo "Zipping ..."
55-
zip -r -9 ../output/Help-$SRC_DIR.zip .
55+
zip -r -9 ../_output/Help-$SRC_DIR.zip .
5656
cd ..
5757
echo "Language: $dir done."
5858
echo "::endgroup::"
@@ -116,5 +116,5 @@ jobs:
116116
TAG: ${{ steps.crelease.outputs.tag }}
117117
REPO: ${{ github.repository }}
118118
run: |
119-
cd output
119+
cd _output
120120
find . -type f -name "*.zip" -exec gh release upload "$TAG" {} --repo "$REPO" --clobber \;

0 commit comments

Comments
 (0)