-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH Actions
- Loading branch information
Showing
8 changed files
with
112 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Publish documentation | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
paths: | ||
- 'docs/**' | ||
- 'README.md' | ||
- '.github/workflows/publish-documentation.yaml' | ||
jobs: | ||
publish: | ||
name: Publish documentation to GitHub Pages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Get latest GitHub Pages | ||
run: | | ||
wget https://github.com/${{ github.repository }}/archive/gh-pages.zip | ||
unzip gh-pages.zip | ||
mkdir public -p | ||
cp -R ${GITHUB_REPOSITORY#*/}-gh-pages/. public | ||
- name: Copy master documentation | ||
if: github.ref == 'refs/heads/master' | ||
run: | | ||
cp README.md public/ | ||
cp -R docs public/ | ||
- name: Copy develop documentation | ||
if: github.ref == 'refs/heads/develop' | ||
run: | | ||
mkdir public/dev -p | ||
cp README.md public/dev/ | ||
cp -R docs public/dev/ | ||
- name: Deploy | ||
uses: peaceiris/[email protected] | ||
with: | ||
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | ||
publish_branch: gh-pages | ||
publish_dir: ./public | ||
enable_jekyll: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Publish update-site | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
paths: | ||
- "core/**" | ||
- "ui/**" | ||
- "templates/eclipse_project/**" | ||
- ".github/workflows/publish-update-site.yaml" | ||
jobs: | ||
publish: | ||
name: Publish update-site to GitHub Pages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: "11" | ||
distribution: "liberica" | ||
java-package: jdk+fx # нужен FX | ||
architecture: x64 | ||
cache: "maven" | ||
server-id: dt_repository # реджестри пакетов 1С | ||
server-username: ${{ secrets.MAVEN_USERNAME }} # храниться в секретах | ||
server-password: ${{ secrets.MAVEN_CENTRAL_TOKEN }} # храниться в секретах в открытом виде | ||
|
||
- name: Get latest GitHub Pages | ||
run: | | ||
wget https://github.com/${{ github.repository }}/archive/gh-pages.zip | ||
unzip gh-pages.zip | ||
mkdir public -p | ||
cp -R ${GITHUB_REPOSITORY#*/}-gh-pages/. public | ||
- name: Build master update site | ||
if: github.ref == 'refs/heads/master' | ||
run: | | ||
export publication_location=../../../public/repository | ||
export MAVEN_OPTS= | ||
./gradlew download-lombok-plugin | ||
export MAVEN_OPTS=-javaagent:target/lombok.jar=ECJ | ||
./gradlew publishPlugin | ||
- name: Build develop update site | ||
if: github.ref == 'refs/heads/develop' | ||
run: | | ||
export publication_location=../../../public/dev/repository | ||
export site_label_suffix='DEV. ' | ||
export MAVEN_OPTS= | ||
./gradlew download-lombok-plugin | ||
export MAVEN_OPTS=-javaagent:target/lombok.jar=ECJ | ||
./gradlew publishPlugin | ||
- name: Deploy | ||
uses: peaceiris/[email protected] | ||
with: | ||
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | ||
publish_branch: gh-pages | ||
publish_dir: ./public | ||
enable_jekyll: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.