From 5b7c93995cebe9b702b685f3e3fb4340c318fb4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BD=A9=E8=BE=95=E5=8C=97=E6=96=97?= <32725664+lfglfg11@users.noreply.github.com> Date: Thu, 20 Jun 2024 00:29:34 +0800 Subject: [PATCH] Delete .github/workflows/release.yml --- .github/workflows/release.yml | 65 ----------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 86db21bf0544..000000000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,65 +0,0 @@ -name: Release CI -on: - push: - branches: - - main - -jobs: - release: - name: Release - runs-on: ubuntu-latest - - services: - postgres: - image: postgres:16 - env: - POSTGRES_PASSWORD: postgres - options: >- - --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 - ports: - - 5432:5432 - - steps: - - uses: actions/checkout@v4 - - - name: Install bun - uses: oven-sh/setup-bun@v1 - with: - bun-version: ${{ secrets.BUN_VERSION }} - - - name: Install deps - run: bun i - - - name: Lint - run: bun run lint - - - name: Test Server Coverage - run: bun run test-server:coverage - env: - DATABASE_TEST_URL: postgresql://postgres:postgres@localhost:5432/postgres - DATABASE_DRIVER: node - NEXT_PUBLIC_SERVICE_MODE: server - KEY_VAULTS_SECRET: LA7n9k3JdEcbSgml2sxfw+4TV1AzaaFU5+R176aQz4s= - - - name: Test App Coverage - run: bun run test-app:coverage - - - name: Release - run: bun run release - env: - GH_TOKEN: ${{ secrets.GH_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - - name: Workflow - run: bun run workflow:readme - - - name: Commit changes - run: |- - git diff - git config --global user.name "lobehubbot" - git config --global user.email "i@lobehub.com" - git add . - git commit -m "📝 docs(bot): Auto sync agents & plugin to readme" || exit 0 - git push - env: - GH_TOKEN: ${{ secrets.GH_TOKEN }}