From e560e89d0dd275a5fca9fecc80cb0287c336433e Mon Sep 17 00:00:00 2001 From: Avinal Kumar Date: Mon, 27 Apr 2020 00:13:24 +0530 Subject: [PATCH 1/2] Corrected Readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b758bd2..a121849 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Converts a image to a grayscale/color Fibonacci Number based Golden Ratio Image. git clone https://github.com/avinal/Golden-Ratio-Image.git cd Golden-Ratio-Image javac src/*.java -java src.TreeDraw +java src.TheCanvas ``` ## Image Examples @@ -23,6 +23,6 @@ java src.TreeDraw 3. Or Set Color ![Colored Golden Me](images/goldenColorAvii.png) -his Project uses `StdDraw.java`. The Same can be obtained from [here](https://introcs.cs.princeton.edu/java/stdlib/StdDraw.java.html). +This Project uses `StdDraw.java`. The Same can be obtained from [here](https://introcs.cs.princeton.edu/java/stdlib/StdDraw.java.html). From 66fe80d580e03b2f590b75a7139a82b1fec179fe Mon Sep 17 00:00:00 2001 From: Avinal Kumar <185067@nith.ac.in> Date: Thu, 29 Oct 2020 16:49:08 +0530 Subject: [PATCH 2/2] Create main.yml --- .github/workflows/main.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..98255e1 --- /dev/null +++ b/.github/workflows/main.yml @@ -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"