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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
name: "CI"
on: # yamllint disable
on: # yamllint disable
- "push"
- "pull_request"
jobs:
yamllint:
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-latest"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v2"
Expand Down
2 changes: 2 additions & 0 deletions environments/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ COPY ../plugins /source/plugins
# Install the nautobot project to include Nautobot
RUN cd /source && \
poetry install --no-interaction --no-ansi && \
# Try to install the export plugin for Poetry v2, if it fails it's probably v1 so we can ignore it
poetry self add poetry-plugin-export || true && \
mkdir /tmp/dist && \
poetry export --without-hashes -o /tmp/dist/requirements.txt

Expand Down
Loading