From 318b56a13f7ec08f1f442ceea4969c2cfcc763e2 Mon Sep 17 00:00:00 2001 From: onechiporenko Date: Thu, 17 Mar 2022 05:05:08 +0200 Subject: [PATCH] Try to automate publishing --- .github/workflows/release-package.yml | 34 +++++++++++++++++++++++++++ .npmrc | 1 + package.json | 2 +- 3 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release-package.yml create mode 100644 .npmrc diff --git a/.github/workflows/release-package.yml b/.github/workflows/release-package.yml new file mode 100644 index 0000000..f55a181 --- /dev/null +++ b/.github/workflows/release-package.yml @@ -0,0 +1,34 @@ +name: Node.js Package + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 12 + - run: npm ci + - run: npm lint + - run: npm test + + publish-gpr: + needs: build + runs-on: ubuntu-latest + permissions: + packages: write + contents: read + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 12 + registry-url: https://npm.pkg.github.com/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..f8d347e --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +@onechiporenko:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/package.json b/package.json index aacc86f..9e2bc0d 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "mocha", "cleanup" ], - "repository": "https://github.com/onechiporenko/eslint-plugin-mocha-cleanup", + "repository": "git://github.com/onechiporenko/eslint-plugin-mocha-cleanup.git", "bugs": "https://github.com/onechiporenko/eslint-plugin-mocha-cleanup/issues", "homepage": "https://github.com/onechiporenko/eslint-plugin-mocha-cleanup", "author": "onechiporenko",