Skip to content

Commit

Permalink
Merge pull request #54 from smk4664/nautobot_banner_support
Browse files Browse the repository at this point in the history
1.1.0 - Add banner, docs and support for 1.3 jobs.
  • Loading branch information
smk4664 authored Jul 1, 2022
2 parents 4ccc194 + 381c3bc commit 797bea9
Show file tree
Hide file tree
Showing 16 changed files with 1,112 additions and 914 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
nautobot-version: ["1.0.1"]
python-version: ["3.7", "3.8", "3.9"]
nautobot-version: ["1.2.11","1.3.7"]
runs-on: "ubuntu-20.04"
env:
INVOKE_WELCOME_WIZARD_PYTHON_VER: "${{ matrix.python-version }}"
Expand Down Expand Up @@ -139,6 +139,10 @@ jobs:
run: "echo RELEASE_VERSION=${GITHUB_REF:10} >> $GITHUB_ENV"
- name: "Run Poetry Version"
run: "poetry version $RELEASE_VERSION"
- name: "Install Dependencies (needed for mkdocs)"
run: "poetry install"
- name: "Build Documentation"
run: "poetry run mkdocs build --no-directory-urls --strict"
- name: "Run Poetry Build"
run: "poetry build"
- name: "Upload binaries to release"
Expand Down Expand Up @@ -168,6 +172,10 @@ jobs:
run: "echo RELEASE_VERSION=${GITHUB_REF:10} >> $GITHUB_ENV"
- name: "Run Poetry Version"
run: "poetry version $RELEASE_VERSION"
- name: "Install Dependencies (needed for mkdocs)"
run: "poetry install"
- name: "Build Documentation"
run: "poetry run mkdocs build --no-directory-urls --strict"
- name: "Run Poetry Build"
run: "poetry build"
- name: "Push to PyPI"
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ share/python-wheels/
.installed.cfg
*.egg
MANIFEST
welcome_wizard/static/welcome_wizard/docs

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The plugin is available as a Python package in pypi and can be installed with pi
pip install nautobot-welcome-wizard
```

> The plugin is compatible with Nautobot 1.0.0b4 and higher
> The plugin is compatible with Nautobot 1.2.0 and higher
To ensure Welcome Wizard is automatically re-installed during future upgrades, create a file named `local_requirements.txt` (if not already existing) in the Nautobot root directory (alongside `requirements.txt`) and list the `nautobot-welcome-wizard` package:

Expand Down
4 changes: 2 additions & 2 deletions coverage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
dev_addr: "127.0.0.1:8001"
edit_uri: "edit/main/welcome_wizard/docs"
site_dir: "welcome_wizard/static/welcome_wizard/docs"
site_name: "Nautobot Welcome Wizard Documentation"
site_url: "https://nautobot-plugin-welcome-wizard.readthedocs.io/"
repo_url: "https://github.com/nautobot/nautobot-plugin-welcome-wizard"
Expand Down
Loading

0 comments on commit 797bea9

Please sign in to comment.