From ebcdbd3a76df376f3926156449f30982654a2258 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Wed, 18 Dec 2024 11:23:37 +0300 Subject: [PATCH 1/2] chore: Add 0xM3R to CODEOWNERS (#23) --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 1c8a646..4a72041 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @fadeev @skosito @andresaiello \ No newline at end of file +* @fadeev @skosito @andresaiello @0xM3R From a0e6a9d14d177059b0dbd70eb25e9adf0881cbba Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Wed, 18 Dec 2024 11:23:46 +0300 Subject: [PATCH 2/2] ci: npm publish workflow (#9) --- .github/workflows/publish-npm.yaml | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/publish-npm.yaml diff --git a/.github/workflows/publish-npm.yaml b/.github/workflows/publish-npm.yaml new file mode 100644 index 0000000..424f500 --- /dev/null +++ b/.github/workflows/publish-npm.yaml @@ -0,0 +1,44 @@ +name: Publish to NPM + +on: + release: + types: [published] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "18" + registry-url: "https://registry.npmjs.org" + + - name: Install Dependencies + run: yarn install + + - name: Build + run: yarn build + + - name: Determine NPM Tag + id: determine-npm-tag + run: | + VERSION_TAG=${GITHUB_REF#refs/tags/v} + if [[ $VERSION_TAG == *"-"* ]]; then + echo ::set-output name=NPM_TAG::${VERSION_TAG#*-} + else + echo ::set-output name=NPM_TAG::latest + fi + env: + GITHUB_REF: ${{ github.ref }} + + - name: Publish to NPM + run: yarn publish --new-version ${GITHUB_REF#refs/tags/v} --tag ${{ + steps.determine-npm-tag.outputs.NPM_TAG }} --no-git-tag-version + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + GITHUB_REF: ${{ github.ref }}