Skip to content

Workflow file for this run

name: Build and Publish
on:
push:
branches:
- main # Adjust if your primary branch is different
paths-ignore:
- 'package.json' # To avoid triggering the workflow for version bump commits
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16' # Change as per your needs
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Git config
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.email "${{ secrets.GH_ORG_EMAIL }}"
git config --global user.name "${{ secrets.GH_ORG_NAME }}"
- name: Bump version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm version patch
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Rename package name to weploy-translate
run: |
sed -i 's/"name": "globalseo"/"name": "weploy-translate"/' package.json
- name: Re-publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push bumped version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: git push origin main