Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pipeline releases #623

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ RUN git config --global --add safe.directory /src
RUN npm install
RUN npm install -g netlify-cli

RUN python3 -m venv .venv
RUN . .venv/bin/activate
RUN pip3 install -r requirements.txt
RUN pip3 install -r requirements.txt --break-system-packages
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't using venv the recommended approach? Is there a problem with a recent update to the hugo image that requires this now?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Last updated June 6, 2023… so not that. Something in the OS package repositories?

It might be worth a quick comment in the Dockerfile explaining why this approach is needed in case someone tries changing it back to venv in future.


ENTRYPOINT ["/usr/bin/netlify"]
CMD ["dev"]
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@
"url": "https://github.com/tektoncd/website/issues"
},
"homepage": "https://tekton.dev/",
"dependencies": {},
"devDependencies": {
"autoprefixer": "10.4.0",
"postcss": "^8.3.7",
"postcss-cli": "^9.0.2"
"postcss-cli": "^9.1.0"
}
}
26 changes: 8 additions & 18 deletions sync/config/pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ archive: https://github.com/tektoncd/pipeline/tags
# header: <dict> # optional, no header added if not set
# See https://www.docsy.dev/docs/adding-content/navigation/#section-menu
tags:
- name: release-v0.61.x
displayName: v0.61.x
- name: release-v0.63.x
displayName: v0.63.x
# Dict of folders to sync
folders:
docs:
Expand All @@ -36,8 +36,8 @@ tags:
exclude:
- api-spec.md
- tutorial.md
- name: release-v0.59.x
displayName: v0.59.x-LTS
- name: release-v0.62.x
displayName: v0.62.x-LTS
# Dict of folders to sync
folders:
docs:
Expand All @@ -46,17 +46,8 @@ tags:
exclude:
- api-spec.md
- tutorial.md
- name: release-v0.56.x
displayName: v0.56.x-LTS
folders:
docs:
index: README.md
include: ['*.md']
exclude:
- api-spec.md
- tutorial.md
- name: release-v0.53.x
displayName: v0.53.x-LTS
- name: release-v0.59.x
displayName: v0.59.x-LTS
# Dict of folders to sync
folders:
docs:
Expand All @@ -65,9 +56,8 @@ tags:
exclude:
- api-spec.md
- tutorial.md
- name: release-v0.50.x
displayName: v0.50.x-LTS
# Dict of folders to sync
- name: release-v0.56.x
displayName: v0.56.x-LTS
folders:
docs:
index: README.md
Expand Down