bump v1.1.0
This commit is contained in:
4
.github/workflows/cd-backend.yml
vendored
4
.github/workflows/cd-backend.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Deploy
|
||||
name: Deploy backend
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -7,7 +7,7 @@ on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
docker-azure:
|
||||
runs-on: ubuntu-latest
|
||||
environment: battleship
|
||||
permissions:
|
||||
|
8
.github/workflows/cd-frontend.yml
vendored
8
.github/workflows/cd-frontend.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Deploy
|
||||
name: Deploy frontend
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -7,7 +7,7 @@ on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build_site:
|
||||
build_frontend:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -36,8 +36,8 @@ jobs:
|
||||
# this should match the `pages` option in your adapter-static options
|
||||
path: 'app/build/'
|
||||
|
||||
deploy-site:
|
||||
needs: build_site
|
||||
deploy-frontend:
|
||||
needs: build_frontend
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -18,7 +18,7 @@ jobs:
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
- name: cargo-check
|
||||
run: cargo check
|
||||
- name: cargo-Clippy
|
||||
- name: cargo-clippy
|
||||
run: cargo clippy
|
||||
- name: cargo-fmt
|
||||
run: cargo fmt --all --check
|
||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -154,7 +154,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
|
||||
|
||||
[[package]]
|
||||
name = "battleship"
|
||||
version = "0.1.0"
|
||||
version = "1.1.0"
|
||||
dependencies = [
|
||||
"axum",
|
||||
"dotenv",
|
||||
|
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "battleship"
|
||||
version = "0.1.0"
|
||||
version = "1.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
Reference in New Issue
Block a user