Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
d43f46c
commented .travis.yml
softalchemy Sep 25, 2021
18be4d6
adding actions.yml
softalchemy Sep 25, 2021
1e2c5a1
Update actions.yml
softalchemy Sep 25, 2021
a991a86
TESTING
softalchemy Sep 25, 2021
53927d1
RETEST
softalchemy Sep 25, 2021
f4a42cc
Update actions.yml
softalchemy Sep 30, 2021
a32abb2
Update publish-docs.sh
softalchemy Sep 30, 2021
54d0697
Update publish-docs.sh
softalchemy Sep 30, 2021
7cc31a5
Update actions.yml
softalchemy Sep 30, 2021
c1ecd20
Update publish-docs.sh
softalchemy Sep 30, 2021
9de9cfa
Update publish-docs.sh
softalchemy Sep 30, 2021
4551c21
ADDING PROJ NAME
softalchemy Sep 30, 2021
6ea3e7b
Update actions.yml
softalchemy Oct 1, 2021
396e93c
Update env.sh
softalchemy Oct 1, 2021
258c8d6
adding the "cat" command
softalchemy Oct 1, 2021
196c522
adding the commend to print file
softalchemy Oct 1, 2021
93bf137
removing the cat and echo's
softalchemy Oct 1, 2021
6666775
changing the vercel scope
softalchemy Oct 1, 2021
eced435
changing the scope
softalchemy Oct 1, 2021
284708d
changing the scope
softalchemy Oct 1, 2021
6c88466
changing the scope
softalchemy Oct 1, 2021
b397391
Update publish-docs.sh
softalchemy Oct 1, 2021
38a4f41
Update publish-docs.sh
softalchemy Oct 1, 2021
491519a
Update publish-docs.sh
softalchemy Oct 1, 2021
84d658f
Update publish-docs.sh
softalchemy Oct 1, 2021
8f7db26
Update publish-docs.sh
softalchemy Oct 1, 2021
8a4bf5c
Update publish-docs.sh
softalchemy Oct 1, 2021
d3b8127
Update actions.yml
softalchemy Oct 1, 2021
d1adcc0
Update publish-docs.sh
softalchemy Oct 1, 2021
207c33f
Update publish-docs.sh
softalchemy Oct 1, 2021
ab2d36d
Update publish-docs.sh
softalchemy Oct 1, 2021
e82f8a3
Update actions.yml
softalchemy Oct 1, 2021
88729ac
changing publish.sh
softalchemy Oct 4, 2021
6728210
Update actions.yml
denispalab Oct 4, 2021
d6de5ab
Update actions.yml
denispalab Oct 4, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@



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 }}


42 changes: 21 additions & 21 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
dist: bionic
sudo: required
# dist: bionic
# sudo: required

branches:
only:
- master
# branches:
# only:
# - master

notifications:
email: false
# notifications:
# email: false

jobs:
include:
# docs pull request or commit to master
- name: "Build Docs"
if: type IN (push, pull_request) AND branch = master
language: node_js
node_js:
- "node"
# jobs:
# include:
# # docs pull request or commit to master
# - name: "Build Docs"
# if: type IN (push, pull_request) AND branch = master
# language: node_js
# node_js:
# - "node"

before_install:
- .travis/affects.sh docs/ .travis || travis_terminate 0
- cd docs/
- source .travis/before_install.sh
script:
- source .travis/script.sh
# before_install:
# - .travis/affects.sh docs/ .travis || travis_terminate 0
# - cd docs/
# - source .travis/before_install.sh
# script:
# - source .travis/script.sh
1 change: 1 addition & 0 deletions ci/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

if [[ -n $CI ]]; then
export CI=1
export CI_BRANCH=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')
if [[ -n $TRAVIS ]]; then
export CI_BRANCH=$TRAVIS_BRANCH
export CI_BASE_BRANCH=$TRAVIS_BRANCH
Expand Down