Skip to content

chore(deps): bump flutter_quill from 9.2.10 to 9.3.9 in /mobile #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9788f9c
add chopper
dungngminh Jan 30, 2024
733e6d2
add register by chopper
dungngminh Jan 30, 2024
3ffb9d7
di and inject local storage
dungngminh Jan 31, 2024
e71b985
refactor: login bloc
dungngminh Feb 3, 2024
5e5b30e
add some stuff
dungngminh Feb 5, 2024
4cde3fc
update dependabot for whole project
dungngminh Feb 14, 2024
005176c
chore(deps): bump firebase_core from 2.24.2 to 2.25.4 in /mobile
dependabot[bot] Feb 14, 2024
de29489
Rename Readme.md to README.md
dungngminh Feb 14, 2024
81dcbf7
chore(deps): bump bloc_test from 9.1.5 to 9.1.6 in /mobile
dependabot[bot] Feb 14, 2024
d8eb05a
Merge pull request #37 from dungngminh/dependabot/pub/mobile/firebase…
dungngminh Feb 15, 2024
8ff9ab0
chore(deps): bump flutter_svg from 2.0.9 to 2.0.10+1 in /mobile
dependabot[bot] Feb 21, 2024
e64e6df
Merge pull request #35 from dungngminh/dependabot/pub/mobile/bloc_tes…
dungngminh Feb 15, 2024
365bcb9
chore(deps): bump formz from 0.6.1 to 0.7.0 in /mobile
dependabot[bot] Feb 22, 2024
d6346b8
Merge pull request #42 from dungngminh/dependabot/pub/mobile/flutter_…
dungngminh Feb 22, 2024
ee9c367
chore(deps): bump firebase_storage from 11.6.0 to 11.6.6 in /mobile
dependabot[bot] Feb 19, 2024
c3fcc29
Merge pull request #43 from dungngminh/dependabot/pub/mobile/formz-0.7.0
dungngminh Feb 24, 2024
f65940d
chore(deps): bump firebase_storage from 11.6.6 to 11.6.10 in /mobile
dependabot[bot] Mar 13, 2024
3f80ffd
Merge pull request #41 from dungngminh/dependabot/pub/mobile/firebase…
dungngminh Feb 28, 2024
9ed7302
chore(deps): bump injectable from 2.3.2 to 2.3.5 in /mobile
dependabot[bot] Mar 14, 2024
e5d5ed8
Merge pull request #50 from dungngminh/dependabot/pub/mobile/firebase…
dungngminh Mar 13, 2024
b92bd25
chore(deps): bump go_router from 13.1.0 to 13.2.2 in /mobile
dependabot[bot] Mar 29, 2024
cd827e2
Merge pull request #53 from dungngminh/dependabot/pub/mobile/injectab…
dungngminh Mar 14, 2024
682fe02
chore(deps): bump chopper_generator from 7.1.1 to 7.2.0 in /mobile
dependabot[bot] Mar 15, 2024
087013c
Merge pull request #59 from dungngminh/dependabot/pub/mobile/go_route…
dungngminh Apr 1, 2024
d164916
Merge pull request #54 from dungngminh/dependabot/pub/mobile/chopper_…
dungngminh Apr 2, 2024
e030264
chore(deps): bump bloc_test from 9.1.6 to 9.1.7 in /mobile
dependabot[bot] Apr 3, 2024
72820d1
chore(deps): bump build_runner from 2.4.8 to 2.4.9 in /mobile
dependabot[bot] Apr 4, 2024
7906c51
Merge pull request #62 from dungngminh/dependabot/pub/mobile/bloc_tes…
dungngminh Apr 3, 2024
a0e5ad2
Merge pull request #65 from dungngminh/dependabot/pub/mobile/build_ru…
dungngminh Apr 4, 2024
db2f65f
fix: ci (#76)
dungngminh May 1, 2024
7ac5ec4
chore(deps): bump flutter_quill from 9.2.10 to 9.3.9 in /mobile
dependabot[bot] May 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Thanks for contributing!
Thanks for your contribution!

Provide a description of your changes below and a general summary in the title

Expand Down
10 changes: 10 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "pub"
directory: "/backend"
schedule:
interval: "daily"
- package-ecosystem: "pub"
directory: "/mobile"
schedule:
interval: "daily"
31 changes: 4 additions & 27 deletions .github/workflows/build_and_push_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ on:
paths:
- backend/**

defaults:
run:
working-directory: /backend

jobs:
deploy:
runs-on: ubuntu-latest
Expand All @@ -31,30 +35,3 @@ jobs:

- name: Change Directory to build folder
run: cd build/

# - name: Overwrite file
# uses: "DamianReeves/write-file-action@master"
# with:
# path: nixpacks.toml
# write-mode: overwrite
# contents: |
# [phases.setup]
# nixpkgsArchive = 'bc901a14315f03cb02d5be6d7e4c8075cd0fe36c'

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v4
with:
context: build/
push: true
tags: dungngminh/server:latest
18 changes: 0 additions & 18 deletions .github/workflows/main.yaml

This file was deleted.

1 change: 0 additions & 1 deletion .vscode/configurationCache.log

This file was deleted.

6 changes: 0 additions & 6 deletions .vscode/dryrun.log

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

Loading