We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c781d5 commit 291883eCopy full SHA for 291883e
.github/workflows/publish.yml
@@ -37,7 +37,7 @@ jobs:
37
echo "::group::Copy _invariant to all language directories, package them"
38
SRC_DIR="_invariant"
39
mkdir -p $SRC_DIR
40
- mkdir -p output
+ mkdir -p _output
41
echo "::endgroup::"
42
43
for dir in */ ; do
@@ -52,7 +52,7 @@ jobs:
52
cp -r -T -v "$SRC_DIR"/. "$dir"/
53
cd $dir
54
echo "Zipping ..."
55
- zip -r -9 ../output/Help-$SRC_DIR.zip .
+ zip -r -9 ../_output/Help-$SRC_DIR.zip .
56
cd ..
57
echo "Language: $dir done."
58
@@ -116,5 +116,5 @@ jobs:
116
TAG: ${{ steps.crelease.outputs.tag }}
117
REPO: ${{ github.repository }}
118
run: |
119
- cd output
+ cd _output
120
find . -type f -name "*.zip" -exec gh release upload "$TAG" {} --repo "$REPO" --clobber \;
0 commit comments