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 25d72af commit 2cee3edCopy full SHA for 2cee3ed
.github/workflows/test.yml
@@ -24,3 +24,22 @@ jobs:
24
version: v1.29
25
args: --issues-exit-code=0 ./sample/...
26
only-new-issues: true
27
+ dist:
28
+ if: github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'dependencies')
29
+ needs: [build, test]
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ - uses: actions/checkout@v2
33
+ with:
34
+ fetch-depth: 0
35
+ ref: ${{ github.event.pull_request.head.ref }}
36
+ - run: |
37
+ npm install
38
+ npm run prepare-deps
39
+ npm run build
40
41
+ git config --local user.name "golangci"
42
+ git config --local user.email "golangci@localhost"
43
+ git add --update
44
+ git commit --message="Update dist"
45
+ git push origin HEAD:<name-of-remote-branch>
0 commit comments