From 7fd988af42cecc32a3c8fb733e2bc768892f6a17 Mon Sep 17 00:00:00 2001 From: Nikolay Kharitonov Date: Tue, 5 Dec 2023 14:36:21 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20custom=20tags=20for=20npm=20publ?= =?UTF-8?q?ish?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/npm.yml | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml index 41b6441b..5d2e10cd 100644 --- a/.github/workflows/npm.yml +++ b/.github/workflows/npm.yml @@ -8,28 +8,43 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v3 + - name: ⤵️ Checkout + uses: actions/checkout@v3 # Setup .npmrc file to use GitHub Packages - - uses: actions/setup-node@v3 + - name: 🔨 Setup node (github registry) + uses: actions/setup-node@v3 with: node-version: '10.x' registry-url: 'https://npm.pkg.github.com' # Defaults to the user or organization that owns the workflow file scope: '@screeps' - - name: Install + - name: 👷 Install run: npm ci env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Publish (github) + - name: 📦️ Publish package (github registry) + if: github.ref_name == 'master' run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/setup-node@v3 + - name: 📦️ Publish tagged package (github registry) + if: github.ref_name != 'master' + run: npm publish --tag ${{ github.ref_name }} + env: + NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: 🔨 Setup node (npmjs) + uses: actions/setup-node@v3 with: node-version: '10.x' registry-url: 'https://registry.npmjs.org' scope: '@screeps' - - name: Publish (npmjs) + - name: 📦️ Publish package (npmjs) + if: github.ref_name == 'master' run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} + - name: 📦️ Publish tagged package (npmjs) + if: github.ref_name != 'master' + run: npm publish --tag ${{ github.ref_name }} + env: + NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}