ci: wip #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish @devtion | |
on: | |
push: | |
jobs: | |
npm-publish-dev: | |
runs-on: ubuntu-22.04 | |
environment: dev | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
registry-url: "https://registry.npmjs.org" | |
cache: yarn | |
- name: Update package.json dependencies and names | |
run: | | |
# Update package.json dependencies | |
sed -i -e 's/"@p0tion\/actions": "[^"]*"/"@devtion\/actions": "latest"/g' ./packages/backend/package.json | |
sed -i -e 's/"@p0tion\/actions": "[^"]*"/"@devtion\/actions": "latest"/g' ./packages/phase2cli/package.json | |
# Update package names | |
sed -i -e 's/"name": "@p0tion\/phase2cli"/"name": "@devtion\/devcli"/g' ./packages/phase2cli/package.json | |
sed -i -e 's/"name": "@p0tion\/backend"/"name": "@devtion\/backend"/g' ./packages/backend/package.json | |
sed -i -e 's/"name": "@p0tion\/actions"/"name": "@devtion\/actions"/g' ./packages/actions/package.json | |
# Update string literals in TypeScript files | |
sed -i 's|p0tion/actions|devtion/actions|g' packages/**/*.ts | |
- name: Initialize Project | |
run: | | |
rm yarn.lock | |
CI=false YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install | |
CI=false yarn build | |
env: | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
- name: Install lerna | |
run: | | |
npm install -g [email protected] | |
- name: Publish packages | |
run: | | |
# Prevent `git commit error` when running `lerna version` | |
# It will not be pushed to GitHub. It is ephemeral | |
git config --global user.email "[email protected]" | |
git config --global user.name "Your Name" | |
git add . | |
git commit -m "chore: publish packages" --no-verify | |
echo "${{ vars.CLI_ENV_FILE }}" > ./packages/phase2cli/dist/.env | |
lerna version 0.0.0-$(git rev-parse --short HEAD~1) --no-push --ignore-scripts --message "chore(release): publish packages" --yes | |
lerna publish from-git --yes | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |