From b86b4989bf6da82e141389c6f87c032f9e9f5316 Mon Sep 17 00:00:00 2001 From: VladimirBeria <71511151+VladimirBeria@users.noreply.github.com> Date: Wed, 20 Nov 2024 23:22:42 +0200 Subject: [PATCH] Create release.yml --- .github/workflows/release.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..25a8299 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 }}