Skip to content

Commit f4aca0f

Browse files
committed
chore: release 0.0.1-alpha.0
1 parent ac8c9cf commit f4aca0f

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: "🍩Feature Request"
33
about: "Suggest an idea for this project"
4-
labels: enhancement
4+
labels: feature
55
title: "feature: "
66
---
77

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414
PRIMARY_NODE_VERSION: 10.x
1515
FORCE_COLOR: true
1616
JEST_CI: true
17+
REGISTRY: https://registry.npmjs.org/
1718

1819
jobs:
1920
test:
@@ -92,7 +93,7 @@ jobs:
9293
uses: actions/setup-node@v1
9394
with:
9495
node-version: ${{ env.PRIMARY_NODE_VERSION }}
95-
registry-url: https://registry.npmjs.org/
96+
registry-url: ${{ env.$REGISTRY }}
9697

9798
- name: Get yarn cache directory path
9899
id: yarn-cache-dir-path
@@ -114,8 +115,10 @@ jobs:
114115
115116
- name: Publish
116117
run: |
117-
yarn config set registry https://registry.npmjs.org/
118-
yarn config set //registry.npmjs.org/:_authToken $NPM_AUTH_TOKEN
118+
yarn config set registry $REGISTRY
119+
yarn config set username $NPM_AUTH_USER
120+
yarn config set email $NPM_AUTH_EMAIL
121+
npm config set //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN
119122
yarn publish --non-interactive --no-git-tag-version
120123
env:
121124
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

0 commit comments

Comments
 (0)