From 7c38eb10e683b23a9f18e21137d15cbd19d3c74e Mon Sep 17 00:00:00 2001 From: XPA Date: Tue, 12 Sep 2023 03:53:40 +0900 Subject: [PATCH] remove: dev-build --- .github/workflows/dev-build.yml | 37 --------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/dev-build.yml diff --git a/.github/workflows/dev-build.yml b/.github/workflows/dev-build.yml deleted file mode 100644 index 307e17ef..00000000 --- a/.github/workflows/dev-build.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: DevBuild - -on: - push: - branches: [ develop ] - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: setup Node - uses: actions/setup-node@v3 - with: - node-version: 18.x - registry-url: 'https://registry.npmjs.org' - - name: init - run: | - npm i -g pnpm - pnpm install - - name: generate dev build - run: pnpm build - - name: Create new commit - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - git config user.email "github-actions@xpadev.net" - git config user.name "github-actions" - git fetch --all - git checkout typedoc - cp -f ./dist/bundle.js ./docs/ - git add . - git commit -m "dev-build" -n - git push -f origin typedoc