Skip to content

token print

token print #41

Workflow file for this run

name: Release
on:
push:
branches:
- private
jobs:
release:
if: github.repository == 'tatukoivisto/nextra'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.4.0
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --filter @tatukoivisto/nextra
- name: Clean
run: pnpm clean
- name: Build
run: pnpm build:core
- name: Type Check
run: pnpm types:check
- name: Print part of the token from .npmrc
run: |
TOKEN=$(grep "//npm.pkg.github.com/:_authToken" .npmrc | cut -d '=' -f2)
echo "Token starts with: ${TOKEN:0:5}... and ends with: ${TOKEN: -5}"
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
publish: pnpm release
version: pnpm run version # should be `pnpm run`
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}