Skip to content

Commit 23aafe6

Browse files
authored
Merge pull request #139 from github/publish-package-from-releases
Publish package from releases via GitHub actions.
2 parents e52d6a9 + abd1499 commit 23aafe6

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

.github/workflows/publish.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Publish
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v2
13+
with:
14+
node-version: 14
15+
registry-url: https://registry.npmjs.org/
16+
- run: npm ci
17+
- run: npm run build --if-present
18+
- run: npm test
19+
- run: npm version ${TAG_NAME} --git-tag-version=false
20+
env:
21+
TAG_NAME: ${{ github.event.release.tag_name }}
22+
- run: npm whoami; npm --ignore-scripts publish
23+
env:
24+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
25+
- uses: actions/setup-node@v2
26+
with:
27+
registry-url: https://npm.pkg.github.com/
28+
- run: npm whoami; npm --ignore-scripts publish
29+
env:
30+
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-github",
3-
"version": "4.3.0",
3+
"version": "0.0.0-dev",
44
"description": "An opinionated collection of ESLint shared configs and rules used by GitHub.",
55
"main": "lib/index.js",
66
"entries": [

0 commit comments

Comments
 (0)