Compare commits

...

2 commits

Author SHA1 Message Date
e70e4b1cd9
add pnpm
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-02-16 21:20:11 +01:00
cc3caa58b6
use settings block
Some checks failed
ci/woodpecker/manual/woodpecker Pipeline failed
ci/woodpecker/push/woodpecker Pipeline is pending
2023-05-16 20:23:43 +02:00
2 changed files with 15 additions and 12 deletions

View file

@ -1,13 +1,13 @@
pipeline: steps:
build-and-push: build-and-push:
image: plugins/docker image: plugins/docker
settings:
registry: code.cozy.town registry: code.cozy.town
username: ${REGISTRY_USERNAME} username:
password: ${REGISTRY_TOKEN} from_secret: registry_username
password:
from_secret: registry_token
repo: code.cozy.town/vrifox/hugoci repo: code.cozy.town/vrifox/hugoci
tags: tags:
- latest - latest
cache_from: code.cozy.town/vrifox/hugoci:latest cache_from: code.cozy.town/vrifox/hugoci:latest
secrets:
- registry_username
- registry_token

View file

@ -1,2 +1,5 @@
FROM docker.io/alpine:latest FROM docker.io/alpine:latest
RUN apk add --no-cache hugo git openssh rsync RUN apk add --no-cache hugo git openssh rsync curl nodejs
RUN curl -L https://unpkg.com/@pnpm/self-installer | node
RUN hugo version
RUN pnpm --version