Skip to content

Commit f65c0d6

Browse files
author
Eugene Tupikov
committed
experiment with GitHub pages
1 parent 210a65c commit f65c0d6

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

.github/workflow/main.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish docs via GitHub Pages
2+
on:
3+
push:
4+
branches:
5+
- master
6+
7+
jobs:
8+
build:
9+
name: Deploy docs
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout master
13+
uses: actions/checkout@v1
14+
15+
- name: Deploy docs
16+
uses: mhausenblas/mkdocs-deploy-gh-pages@master
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

docs/index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Yii2 Multiple input widget.
2+
Yii2 widget for handle multiple inputs for an attribute of model and tabular input for batch of models.
3+
4+
[![Latest Stable Version](https://poser.pugx.org/unclead/yii2-multiple-input/v/stable)](https://packagist.org/packages/unclead/yii2-multiple-input)
5+
[![Total Downloads](https://poser.pugx.org/unclead/yii2-multiple-input/downloads)](https://packagist.org/packages/unclead/yii2-multiple-input)
6+
[![Daily Downloads](https://poser.pugx.org/unclead/yii2-multiple-input/d/daily)](https://packagist.org/packages/unclead/yii2-multiple-input)
7+
[![Latest Unstable Version](https://poser.pugx.org/unclead/yii2-multiple-input/v/unstable)](https://packagist.org/packages/unclead/yii2-multiple-input)
8+
[![License](https://poser.pugx.org/unclead/yii2-multiple-input/license)](https://packagist.org/packages/unclead/yii2-multiple-input)
9+
10+
## Latest release
11+
The latest stable version of the extension is v2.25.0 Follow the [instruction](./UPGRADE.md) for upgrading from previous versions

mkdocs.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
site_name: yii2-multipke-input
2+
site_description: 'A docs test'
3+
site_author: 'Eugene Tupikov'
4+
docs_dir: docs/
5+
repo_name: 'unclead/yii2-multiple-input'
6+
repo_url: 'https://github.com/unclead/yii2-multiple-input'
7+
nav:
8+
- About: index.md
9+
theme:
10+
name: 'material'

0 commit comments

Comments
 (0)