Skip to content

Commit

Permalink
chore: release 0.0.1-alpha.0
Browse files Browse the repository at this point in the history
  • Loading branch information
regevbr committed Mar 21, 2020
1 parent ac8c9cf commit f4aca0f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: "🍩Feature Request"
about: "Suggest an idea for this project"
labels: enhancement
labels: feature
title: "feature: "
---

Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
PRIMARY_NODE_VERSION: 10.x
FORCE_COLOR: true
JEST_CI: true
REGISTRY: https://registry.npmjs.org/

jobs:
test:
Expand Down Expand Up @@ -92,7 +93,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ env.PRIMARY_NODE_VERSION }}
registry-url: https://registry.npmjs.org/
registry-url: ${{ env.$REGISTRY }}

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand All @@ -114,8 +115,10 @@ jobs:
- name: Publish
run: |
yarn config set registry https://registry.npmjs.org/
yarn config set //registry.npmjs.org/:_authToken $NPM_AUTH_TOKEN
yarn config set registry $REGISTRY
yarn config set username $NPM_AUTH_USER
yarn config set email $NPM_AUTH_EMAIL
npm config set //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN
yarn publish --non-interactive --no-git-tag-version
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

0 comments on commit f4aca0f

Please sign in to comment.