From 5e2a293d8178765d84321fbc6a12e4f3dc89acd2 Mon Sep 17 00:00:00 2001 From: heyli Date: Mon, 22 Jan 2024 22:20:48 +0800 Subject: [PATCH] feat: cancel main job --- .github/workflows/main.yml | 72 +++++++++++++++++++------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index adbc1eb6f07e..02200ac5a7d2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,39 +9,39 @@ on: branches: [] # A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - - name: Install - run: | - yarn - yarn clean - - - name: Build - run: | - yarn build - - - name: Check Build - run: | - sudo -i - sudo chown -R $USER ./dist - - - name: Docschina Github Action - id: deployStatic - uses: lcxfs1991/docschina-actions@master - with: - skipFiles: ${{ secrets.SKIP_FILES }} - secretId: ${{ secrets.SECRET_ID }} - secretKey: ${{ secrets.SECRET_KEY }} - staticSrcPath: ./dist - bucket: ${{ secrets.BUCKET }} - region: ${{ secrets.REGION }} - forceFiles: ${{ secrets.FORCE_FILES }} +# jobs: +# # This workflow contains a single job called "build" +# build: +# # The type of runner that the job will run on +# runs-on: ubuntu-latest + +# # Steps represent a sequence of tasks that will be executed as part of the job +# steps: +# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it +# - uses: actions/checkout@v2 + +# - name: Install +# run: | +# yarn +# yarn clean + +# - name: Build +# run: | +# yarn build + +# - name: Check Build +# run: | +# sudo -i +# sudo chown -R $USER ./dist + +# - name: Docschina Github Action +# id: deployStatic +# uses: lcxfs1991/docschina-actions@master +# with: +# skipFiles: ${{ secrets.SKIP_FILES }} +# secretId: ${{ secrets.SECRET_ID }} +# secretKey: ${{ secrets.SECRET_KEY }} +# staticSrcPath: ./dist +# bucket: ${{ secrets.BUCKET }} +# region: ${{ secrets.REGION }} +# forceFiles: ${{ secrets.FORCE_FILES }}