bump v1.1.0

This commit is contained in:
sparshg
2024-09-26 01:48:12 +05:30
parent e49e5e086b
commit 26e3d3db20
5 changed files with 9 additions and 9 deletions

View File

@@ -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:

View File

@@ -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:

View File

@@ -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
View File

@@ -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",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "battleship" name = "battleship"
version = "0.1.0" version = "1.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]