From 04cd310791e1bb06d5382e7026fe80f206fb9652 Mon Sep 17 00:00:00 2001 From: SKartynnik <142836607+SKartynnik@users.noreply.github.com> Date: Sun, 8 Oct 2023 22:51:04 +0300 Subject: [PATCH 1/3] Create mypages.html --- entries/mypages.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 entries/mypages.html diff --git a/entries/mypages.html b/entries/mypages.html new file mode 100644 index 00000000..daa3f6ac --- /dev/null +++ b/entries/mypages.html @@ -0,0 +1,23 @@ + + + + +
+ + + ++ This is my first pages ;) +
+ + + From c2d6c163a0c1975789b827fa9f9f99fdc7abd387 Mon Sep 17 00:00:00 2001 From: SKartynnik <142836607+SKartynnik@users.noreply.github.com> Date: Sun, 8 Oct 2023 22:53:51 +0300 Subject: [PATCH 2/3] Update entries.js --- entries.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/entries.js b/entries.js index 271a7388..8ff6b6b6 100644 --- a/entries.js +++ b/entries.js @@ -15,6 +15,13 @@ */ const entries = [ + { + title: "Dancing Man", + filename: "mypages.html", + description: "This is my pages.", + author: "Sergey Kartynnik (SKartynnik)", + github: "SKartynnik", + }, { title: "Dancing Man", filename: "dancing_man.html", From 0f34839246664cd084426bebb083b4d5d22646e0 Mon Sep 17 00:00:00 2001 From: SKartynnik <142836607+SKartynnik@users.noreply.github.com> Date: Sun, 8 Oct 2023 23:26:25 +0300 Subject: [PATCH 3/3] Create pages.yml --- .github/workflows/pages.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 00000000..fc5d79aa --- /dev/null +++ b/.github/workflows/pages.yml @@ -0,0 +1,23 @@ +name: CI +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [ master ] + pull_request: + branches: [ master ] + + # 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 + runs-on: buntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under SGITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2