Skip to content

Commit

Permalink
Try to build Action
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Shevchuk committed Jul 10, 2023
1 parent 8adeeab commit 6a47ca8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,11 @@ jobs:
- name: List of the result HTML files
run: find . -type f -not -path '*/\.*' -not -path '*/node_modules/*' -name "*.html"
- name: Prepare directory with resources for web
run: mkdir .public
- run: cp -r javascripts .public
- run: cp -r stylesheets .public
- run: cp -r node_modules/reveal.js .public/javascripts
run: |
mkdir .public
cp -r javascripts .public
cp -r stylesheets .public
cp -r node_modules/reveal.js .public/javascripts
- name: Copy all HTML files
run: find . -type f -not -path '*/\.*' -not -path './node_modules/*' -not -path './common/*' -name "*.html" -exec cp --parents -t "./.public" {} +
- name: Copy all images directories
Expand Down

0 comments on commit 6a47ca8

Please sign in to comment.