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
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
needs: package-availability
needs: [package-availability, lint]
steps:
- name: Checkout
uses: actions/checkout@v7.0.1
Expand Down
11 changes: 4 additions & 7 deletions .woodpecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,10 @@ when:
- root/**
- .woodpecker.yml

# Dockerfile lint and functional testing happen in
# .github/workflows/CI.yml, not here - this pipeline only builds and
# pushes images.
steps:
- name: lint-dockerfile
image: hadolint/hadolint:latest-alpine
commands:
- hadolint --version
- hadolint Dockerfile

# Derives image tags from the pinned borgmatic/borg versions in
# requirements.txt (e.g. "latest" + "2.1.6-1.4.4") so published tags
# track what's actually in the image, not just a floating "latest".
Expand All @@ -34,7 +31,7 @@ steps:
- name: build-and-push
image: woodpeckerci/plugin-docker-buildx
privileged: true
depends_on: [lint-dockerfile, prepare-tags]
depends_on: [prepare-tags]
settings:
repo: modem7/borgmatic-docker
dockerfile: Dockerfile
Expand Down