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