diff --git a/.github/workflows/release-package.yml b/.github/workflows/release-package.yml new file mode 100644 index 0000000..0c6a9d7 --- /dev/null +++ b/.github/workflows/release-package.yml @@ -0,0 +1,30 @@ +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 test + + publish-gpr: + needs: build + runs-on: ubuntu-latest + 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..e627f3c --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +@MARK3APPS:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/package.json b/package.json index 75fc647..2b7e880 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,9 @@ "typescript": "^4.0.5", "war3-types": "^1.0.4" }, + "publishConfig": { + "@MARK3APPS:registry": "https://npm.pkg.github.com" + }, "repository": { "type": "git", "url": "git+https://github.com/mark3apps/w3ts.git"