From 2496e7862d355f5c2c8ef8a24e729f80cbbf174b Mon Sep 17 00:00:00 2001 From: joeaba <77398477+joeaba@users.noreply.github.com> Date: Thu, 30 Sep 2021 01:54:26 +0530 Subject: [PATCH] Update and rename spl_action.yml to spl_action.txt --- .github/workflows/spl_action.txt | 28 ++++++++++++++++++++++++++++ .github/workflows/spl_action.yml | 28 ---------------------------- 2 files changed, 28 insertions(+), 28 deletions(-) create mode 100644 .github/workflows/spl_action.txt delete mode 100644 .github/workflows/spl_action.yml diff --git a/.github/workflows/spl_action.txt b/.github/workflows/spl_action.txt new file mode 100644 index 00000000..6f74b550 --- /dev/null +++ b/.github/workflows/spl_action.txt @@ -0,0 +1,28 @@ +# on: +# push: +# branches: [master] +# pull_request: +# branches: [master] + +# jobs: +# build: +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v2 +# name: "importing all the document" +# - uses: actions/setup-node@v2 +# with: +# node-version: '16' +# name: "installing the node.js with version 16" +# - run: .travis/affects.sh docs/ .travis || exit 0 +# if: ${{ github.event_name == ('push' || 'pull_request')}} && ${{github.ref == 'master'}} +# name: "Build Docs" +# - run: | +# cd docs/ +# source .travis/before_install.sh +# npm ci +# source .travis/script.sh +# env: +# VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} + + diff --git a/.github/workflows/spl_action.yml b/.github/workflows/spl_action.yml deleted file mode 100644 index 1c22a285..00000000 --- a/.github/workflows/spl_action.yml +++ /dev/null @@ -1,28 +0,0 @@ -on: - push: - branches: [master] - pull_request: - branches: [master] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - name: "importing all the document" - - uses: actions/setup-node@v2 - with: - node-version: '16' - name: "installing the node.js with version 16" - - run: .travis/affects.sh docs/ .travis || exit 0 - if: ${{ github.event_name == ('push' || 'pull_request')}} && ${{github.ref == 'master'}} - name: "Build Docs" - - run: | - cd docs/ - source .travis/before_install.sh - npm ci - source .travis/script.sh - env: - VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} - -