Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Merge pull request #32 from vtex/update/i18n #5

Merge pull request #32 from vtex/update/i18n

Merge pull request #32 from vtex/update/i18n #5

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
build:
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: yarn build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}