This commit is contained in:
parent
90705786f9
commit
ddb6034924
3 changed files with 11 additions and 11 deletions
|
@ -12,7 +12,7 @@ steps:
|
|||
- rustup override set nightly
|
||||
- rustup component add rustfmt
|
||||
- rustup component add clippy
|
||||
- export VANIGAM_server_COOKIE_SECRET=d05604b56ffd0f57200be49313a9e51436ca8f1678b9ffdf8d2602d5e9839f05
|
||||
- export vanikam_server_COOKIE_SECRET=d05604b56ffd0f57200be49313a9e51436ca8f1678b9ffdf8d2602d5e9839f05
|
||||
- make db.migrate
|
||||
- make lint
|
||||
- make test
|
||||
|
@ -31,7 +31,7 @@ steps:
|
|||
event: [pull_request]
|
||||
settings:
|
||||
dry_run: true
|
||||
repo: libresolutions/vanigam
|
||||
repo: libresolutions/vanikam
|
||||
tags: latest
|
||||
|
||||
# build_and_publish_docker_img:
|
||||
|
@ -42,7 +42,7 @@ steps:
|
|||
# username: forgeflux
|
||||
# password:
|
||||
# from_secret: DOCKER_TOKEN
|
||||
# repo: libresolutions/vanigam
|
||||
# repo: libresolutions/vanikam
|
||||
# tags:
|
||||
# latest
|
||||
|
||||
|
@ -54,7 +54,7 @@ steps:
|
|||
# dry_run: true
|
||||
# dockerfile: scripts/publish-bins-docker
|
||||
# purge: false
|
||||
# repo: libresolutions/vanigam-publisher
|
||||
# repo: libresolutions/vanikam-publisher
|
||||
# tags: latest
|
||||
#
|
||||
# publish_bins:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name = "vanigam"
|
||||
name = "vanikam"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
|
|
12
Makefile
12
Makefile
|
@ -48,14 +48,14 @@ doc: ## Prepare documentation
|
|||
|
||||
docker.build: ## Build docker images
|
||||
docker build \
|
||||
-t libresolutions/vanigam:master \
|
||||
-t libresolutions/vanigam:latest \
|
||||
-t libresolutions/vanigam:0.1.0 .
|
||||
-t libresolutions/vanikam:master \
|
||||
-t libresolutions/vanikam:latest \
|
||||
-t libresolutions/vanikam:0.1.0 .
|
||||
|
||||
docker.publish: docker.build ## Build and publish docker images
|
||||
docker push libresolutions/vanigam:master
|
||||
docker push libresolutions/vanigam:latest
|
||||
docker push libresolutions/vanigam:0.1.0
|
||||
docker push libresolutions/vanikam:master
|
||||
docker push libresolutions/vanikam:latest
|
||||
docker push libresolutions/vanikam:0.1.0
|
||||
|
||||
|
||||
env.db: ## Deploy dependencies
|
||||
|
|
Loading…
Reference in a new issue