Create main.yml

This commit is contained in:
Avinal Kumar
2020-10-29 16:49:08 +05:30
committed by GitHub
parent e560e89d0d
commit 66fe80d580

26
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
# This is a basic workflow to help you get started with Actions
name: Generate and deploy docs
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: all
pull_request:
branches: all
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
update-readme:
name: Update the WakaTime Stat
runs-on: ubuntu-latest
steps:
- uses: avinal/github-pages-deploy-action@master
with:
GITHUB_TOKEN: ${{ github.token }}
LANGUAGE: "java"
MAKE_COMMAND: "make html"
PAGES_BRANCH: "gh-pages"
BUILD_FROM: "develop"
DOCS_FOLDER: "output"