We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a76d7f commit f174716Copy full SHA for f174716
.github/workflows/build.yml
@@ -9,16 +9,15 @@ jobs:
9
- uses: actions/setup-node@v1
10
with:
11
node-version: '12.x'
12
- - run: rm dist/index.js
13
- run: |
14
npm ci
15
npm run build
16
17
git checkout --detach
18
git config user.email "ros-tooling@users.noreply.github.com"
19
git config user.name "ROS Tooling [bot]"
20
- git commit --no-verify -m "$commitmsg" --allow-empty
+ git add --force dist
+ git commit --no-verify -m "$commitmsg" --only dist
21
git push origin --no-verify HEAD:refs/tags/build/${{github.sha}}
22
-
23
env:
24
- commitmsg: "Autobuild\\n\\nGitHub-Workflow: ${{ github.workflow }}"
+ commitmsg: "Autobuild\n\nGitHub-Workflow: ${{ github.workflow }}"
0 commit comments