1 Commits

Author SHA1 Message Date
dbaf6aa04a fix(deps): update all dependencies 2025-05-10 03:30:33 +00:00
3 changed files with 888 additions and 491 deletions

View File

@@ -2,8 +2,27 @@ type: docker
kind: pipeline kind: pipeline
name: "shuttle-drone-templates" name: "shuttle-drone-templates"
steps: steps:
- name: "wait for dind"
image: docker:dind
volumes:
- name: dockersock
path: /var/run
environment:
DOCKER_BUILDKIT: 1
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
commands:
- ls /var/run
- set -eu
- sleep 10
- echo "$${DOCKER_PASSWORD}" | docker login --password-stdin --username="$${DOCKER_USERNAME}"
- name: "build" - name: "build"
image: docker.io/kasperhermansen/shuttle-drone:1690570181415 image: docker.io/kasperhermansen/shuttle-drone:1690570181415
volumes:
- name: dockersock
path: /var/run
environment: environment:
DOCKER_BUILDKIT: 1 DOCKER_BUILDKIT: 1
DOCKER_PASSWORD: DOCKER_PASSWORD:
@@ -17,8 +36,7 @@ steps:
GIT_USERNAME: GIT_USERNAME:
from_secret: GIT_USERNAME from_secret: GIT_USERNAME
GIT_PASSWORD: GIT_PASSWORD:
from_secret: GIT_PASSWORD from_secret: GIT_PASSWORD
DOCKER_HOST: "tcp://192.168.1.155:2376"
commands: commands:
- set -eu - set -eu
- apt update && apt install -y libssl-dev pkg-config openssl # musl-tools - apt update && apt install -y libssl-dev pkg-config openssl # musl-tools
@@ -38,3 +56,13 @@ steps:
- sha1sum ci/target/debug/ci - sha1sum ci/target/debug/ci
- ldd ci/target/debug/ci - ldd ci/target/debug/ci
- "./ci/target/debug/ci" - "./ci/target/debug/ci"
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}

View File

@@ -14,10 +14,10 @@
}, },
"dependencies": { "dependencies": {
"@tailwindcss/typography": "^0.5.9", "@tailwindcss/typography": "^0.5.9",
"tailwindcss": "^4.0.0" "tailwindcss": "^3.3.1"
}, },
"devDependencies": { "devDependencies": {
"@catppuccin/tailwindcss": "^0.1.1", "@catppuccin/tailwindcss": "^0.1.1",
"@tailwindcss/cli": "^4.0.0" "@tailwindcss/cli": "^0.1.2"
} }
} }

1343
yarn.lock

File diff suppressed because it is too large Load Diff