mirror of
https://codeberg.org/spire/dispenser.git
synced 2026-06-03 10:04:07 +02:00
bumb dependencies + docker ci
This commit is contained in:
parent
58d593790a
commit
6378e12eee
3 changed files with 431 additions and 288 deletions
27
.github/workflows/docker.yaml
vendored
Normal file
27
.github/workflows/docker.yaml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
name: docker-build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
- 'master'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
- name: Build and push
|
||||||
|
id: docker_build
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
tags: spiretf/dispsenser:latest
|
||||||
|
- name: Image digest
|
||||||
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
||||||
706
Cargo.lock
generated
706
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -14,8 +14,8 @@ toml = "0.5"
|
||||||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
||||||
camino = "1"
|
camino = "1"
|
||||||
petname = "1"
|
petname = "1"
|
||||||
thrussh = "0.32"
|
thrussh = "0.33"
|
||||||
thrussh-keys = "0.20"
|
thrussh-keys = "0.21"
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
pretty_env_logger = "0.4"
|
pretty_env_logger = "0.4"
|
||||||
tokio-cron-scheduler = "0.2"
|
tokio-cron-scheduler = "0.2"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue