Compare commits

...

2 Commits

Author SHA1 Message Date
Lucien Cartier-Tilet 58bd07d556
chore: remove unnecessary step
Create and publish a Docker image / build-and-push-image (push) Successful in 1m29s Details
Default docker image in Gitea runner now ships with Docker
2023-12-19 20:09:05 +01:00
Lucien Cartier-Tilet ad014dd1ae
chore: simplify Dockerfile 2023-12-19 20:09:05 +01:00
2 changed files with 1 additions and 5 deletions

View File

@ -18,9 +18,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Docker
run: curl -fsSL https://get.docker.com | sh
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:

View File

@ -18,8 +18,7 @@ RUN --mount=type=bind,source=src,target=src \
set -e
sqlx database create
sqlx migrate run
cargo build --locked --release
cargo install --path .
cargo install --locked --path .
EOF