From a162f5252d1b30a64c601aab3fdea6e93d982297 Mon Sep 17 00:00:00 2001 From: Matheus Dias Date: Sat, 25 Feb 2023 00:10:42 -0300 Subject: [PATCH] chore: npm publish --- .github/workflows/publish.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..291e3be --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,21 @@ +name: Publish Package to NPM +on: + release: + types: [published] + +jobs: + build: + name: 'Build and publish' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: '18.x' + registry-url: 'https://registry.npmjs.org' + scope: '@musicorum' + - run: npm ci + - run: npm run build + - run: yarn publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} \ No newline at end of file