Skip to content

Commit

Permalink
feat: cancel main job
Browse files Browse the repository at this point in the history
  • Loading branch information
lcxfs1991 committed Jan 22, 2024
1 parent 40381a6 commit 5e2a293
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 5e2a293

Please sign in to comment.