Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
23 changes: 11 additions & 12 deletions .github/workflows/assembly-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ on:

env:
# PHP Configuration
PHP_MODULES-7.4: none,xdebug-3.1.6,bcmath,bz2,calendar,Core,ctype,curl,date,dom,exif,fileinfo,filter,gd,hash,iconv,intl,json,libxml,mbstring,openssl,pcre,PDO,Phar,readline,Reflection,session,SimpleXML,soap,sockets,SPL,standard,tokenizer,xml,xmlreader,xmlwriter,xsl,zip,zlib
PHP_MODULES: none,bcmath,bz2,calendar,Core,ctype,curl,date,dom,exif,fileinfo,filter,gd,hash,iconv,intl,json,libxml,mbstring,openssl,pcre,PDO,Phar,readline,Reflection,session,SimpleXML,soap,sockets,SPL,standard,tokenizer,xml,xmlreader,xmlwriter,xsl,zip,zlib
PHPUNIT_DIR: ${{ github.workspace }}/target/analysis/phpunit
PHPUNIT_LOG: ${{ github.workspace }}/target/analysis/phpunit/phpunit-test.log

# User Configuration
AUTH_DIR: "${HOME}/.ya-corapi"
AUTH_DIR: "${HOME}"

DOCU_SRC_DIR: "site/resources"

Expand Down Expand Up @@ -55,27 +54,27 @@ jobs:
run: asciidoctor-reducer --preserve-conditionals -o README.adoc ${{ env.DOCU_SRC_DIR }}/pj-readme.adoc

- name: assembly config.adoc
run: asciidoctor-reducer --preserve-conditionals -o config.adoc ${{ env.DOCU_SRC_DIR }}/pj-config.adoc
run: asciidoctor-reducer --preserve-conditionals -o docu-config.adoc ${{ env.DOCU_SRC_DIR }}/pj-config.adoc

- name: assembly analysis.adoc
run: asciidoctor-reducer --preserve-conditionals -o analysis.adoc ${{ env.DOCU_SRC_DIR }}/pj-analysis.adoc
run: asciidoctor-reducer --preserve-conditionals -o docu-analysis.adoc ${{ env.DOCU_SRC_DIR }}/pj-analysis.adoc

- name: assembly commmands.adoc
run: asciidoctor-reducer --preserve-conditionals -o commands.adoc ${{ env.DOCU_SRC_DIR }}/pj-commands.adoc
run: asciidoctor-reducer --preserve-conditionals -o docu-commands.adoc ${{ env.DOCU_SRC_DIR }}/pj-commands.adoc

- name: assembly examples.adoc
run: asciidoctor-reducer --preserve-conditionals -o examples.adoc ${{ env.DOCU_SRC_DIR }}/pj-examples.adoc
run: asciidoctor-reducer --preserve-conditionals -o docu-examples.adoc ${{ env.DOCU_SRC_DIR }}/pj-examples.adoc

- name: assembly usage.adoc
run: asciidoctor-reducer --preserve-conditionals -o usage.adoc ${{ env.DOCU_SRC_DIR }}/pj-usage.adoc
run: asciidoctor-reducer --preserve-conditionals -o docu-usage.adoc ${{ env.DOCU_SRC_DIR }}/pj-usage.adoc

- name: commit and push documents
uses: EndBug/add-and-commit@v9.1.4
with:
add: |
- README.adoc
- config.adoc
- analysis.adoc
- commands.adoc
- examples.adoc
- usage.adoc
- docu-config.adoc
- docu-analysis.adoc
- docu-commands.adoc
- docu-examples.adoc
- docu-usage.adoc
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or output of the use or inability to use the
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
Expand Down
Loading
Loading