diff options
| -rw-r--r-- | .github/workflows/main.yml | 16 | 
1 files changed, 3 insertions, 13 deletions
| diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ea16e8d..bca7215 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,29 +1,19 @@ -# This is a basic workflow to help you get started with Actions +name: JSON updater -name: CI - -# Controls when the workflow will run  on:    schedule:      - cron: "0 0 * * *" -  # Allows you to run this workflow manually from the Actions tab    workflow_dispatch: -# 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 +  DL:      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 -      # Runs a set of commands using the runners shell -      - name: Run a multi-line script +      - name: Update the danged JSON          run: |            cd $GITHUB_WORKSPACE            rm circuitsv2.json | 
