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 5d477df commit 89a1eabCopy full SHA for 89a1eab
.github/workflows/test2.yml
@@ -23,6 +23,7 @@ jobs:
23
git config --global user.name "GitHub Action"
24
BRANCH_NAME=automated-build-$(date +'%Y%m%d%H%M%S')
25
git checkout -b $BRANCH_NAME
26
+ git add dist/index.js
27
git diff --quiet && git diff --staged --quiet || git commit -m "Automated build"
28
git push origin $BRANCH_NAME
29
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV
index.js
@@ -27,7 +27,7 @@ try {
console.log(`Successfully override version code ${versionCode}`)
if (versionName.length > 0)
console.log(`Successfully override version code ${versionName}`)
30
- core.setOutput("result", `Done`);
+ core.setOutput("result", `Done.`);
31
});
32
33
0 commit comments