@bigbinary/neeto-icons 1.8.6 → 1.8.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,26 @@
1
+ name: "Publish npm package"
2
+ on:
3
+ push:
4
+ branches:
5
+ - master
6
+ jobs:
7
+ publish:
8
+ name: "Publish"
9
+ runs-on: macos-latest
10
+ if: "!contains(github.event.pull_request.labels.*.name, 'skip-ci')"
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: actions/setup-node@v2
14
+ with:
15
+ node-version: '14'
16
+ - name: 'Automated Version Bump'
17
+ id: version-bump
18
+ uses: 'phips28/gh-action-bump-version@master'
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+ - run: yarn install
22
+ - name: "Publish"
23
+ uses: JS-DevTools/npm-publish@v1
24
+ id: publish
25
+ with:
26
+ token: ${{ secrets.NPM_TOKEN }}