Skip to content

fix release.yml

fix release.yml #63

Workflow file for this run

name: CD
on:
push:
branches: [r137-dev]
workflow_dispatch:
jobs:
deploy:
name: Deploy to OSS
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: 安装 pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: 使用 Nnode.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: 安装依赖
run: pnpm install
- name: Build
run: pnpm run build
- name: Install deployment packages
run: pnpm install
working-directory: deployment
- name: Deploy to OSS
run: node index.js ${{ secrets.ALIYUN_SECRET_ID }} ${{ secrets.ALIYUN_SECRET_KEY }} oss-cn-beijing oppentech-test ../build/three.js /holodeck/js/cd/three-$(git rev-parse HEAD).js
working-directory: deployment
publish:
name: Publish to npm
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v2
with:
node-version: 20
- name: Modify version
run: |
sed -i 's/"version" *: *"\(.*\)"/"version": "\1-'$(git rev-parse HEAD)'"/g' package.json
- uses: actions/checkout@v4
- name: 安装 pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: 使用 Nnode.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: 安装依赖
run: pnpm install
- name: Build
run: pnpm run build
- name: Modify npm repository
run: |
echo "@oppentech:registry=http://npm.internal.oppenlab.com/repository/npm_private/" >> ~/.npmrc
echo "//npm.internal.oppenlab.com/repository/npm_private/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" >> ~/.npmrc
- name: Publish to npm
run: pnpm publish --no-git-checks