Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,12 @@ jobs:
# 3. Putting the robot account's username and password in GitHub actions environment
if: env.PUBLIC == 'true'
run: |
docker login -u "${{ secrets.QUAY_USERNAME }}" -p "${{ secrets.QUAY_PASSWORD }}" "${{ env.REGISTRY }}"
docker login -u "${{ secrets.QUAY_USERNAME }}" -p "${{ secrets.QUAY_PASSWORD }}" "${REGISTRY}"
if [ "${{ env.PUBLISH_DOCKERIO }}" = "true" ]; then
docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" -p "${{ secrets.DOCKERHUB_TOKEN }}" docker.io
fi
env:
REGISTRY: ${{ env.REGISTRY }}

# image: env.IMAGE
#
Expand Down
8 changes: 5 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ ci:
repos:
# https://github.com/pre-commit/mirrors-prettier is not maintained
- repo: https://github.com/rbubley/mirrors-prettier
rev: v3.5.3
rev: v3.6.2
hooks:
- id: prettier

# autoformat and lint Python code
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.8
rev: v0.12.7
hooks:
- id: ruff
args: ["--select=I", "--fix", "--show-fixes"]
Expand All @@ -31,6 +31,8 @@ repos:
# Static security analysis of GitHub actions https://github.com/woodruffw/zizmor
# Additional config is in .github/zizmor.yml
- repo: https://github.com/woodruffw/zizmor-pre-commit
rev: v1.6.0
rev: v1.11.0
hooks:
- id: zizmor
args:
- --fix=safe