diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..5b3fb7a --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,13 @@ +pipeline: + alpine: + image: woodpeckerci/plugin-docker-buildx + settings: + repo: lttech/deno-deployctl + platforms: linux/amd64,linux/arm64/v8 + tags: + - ${version}-${os} + build_args: + - tag=${version}-${os} + username: lttech + password: + from_secret: docker_lttech diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8e308ae --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM alpine +RUN apk add curl +RUN curl -fsSL https://deno.land/x/install/install.sh | sh +RUN deno install --allow-all --no-check -r -f https://deno.land/x/deploy/deployctl.ts \ No newline at end of file