Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirBeria committed Nov 20, 2024
2 parents c2357e6 + b86b498 commit dd7582c
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: styleguide client release

on:
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest

steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3

# Set up Node.js environment
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
registry-url: https://registry.npmjs.org/

# Authenticate with npm
- name: Authenticate with npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > ~/.npmrc

# Publish to npm
- name: Publish to npm
run: npm run publish-styleguide
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit dd7582c

Please sign in to comment.