Skip to content

Commit

Permalink
Test auto deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Pelayori committed Feb 18, 2024
1 parent 57d6c32 commit d637d65
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Deploy Pages
on:
push:
branches: [ master, develop, deploy-gh-pages ]

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'

- name: Install Asciidoctor and Asciidoctor-diagram
run: gem install asciidoctor asciidoctor-diagram

- name: Install Graphviz
run: sudo apt-get install graphviz

- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'

- name: Install npm dependencies in docs
run: cd docs && npm install

- name: Build project
run: cd docs && npm run build

- name: Deploy project
run: cd docs && npm run deploy

0 comments on commit d637d65

Please sign in to comment.