Skip to content

Commit

Permalink
Merge pull request #445 from hibare/dev
Browse files Browse the repository at this point in the history
Dedps + Dev->Nightly action
  • Loading branch information
hibare authored Aug 27, 2023
2 parents 6f308f4 + 4375697 commit cb1ed19
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 31 deletions.
20 changes: 18 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,42 @@ updates:
- package-ecosystem: "github-actions"
directory: "/.github"
schedule:
interval: "daily"
interval: "weekly"
day: "friday"
time: "00:30"
target-branch: "dev"
assignees:
- "hibare"

# Maintain dependencies for Go mods
- package-ecosystem: "pip"
directory: "/backend"
schedule:
interval: "daily"
interval: "weekly"
day: "friday"
time: "00:30"
target-branch: "dev"
assignees:
- "hibare"

# Maintain version for Docker
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
day: "friday"
time: "00:30"
target-branch: "dev"
assignees:
- "hibare"

# Maintain version for npm or yarn
- package-ecosystem: "npm"
directory: "/frontend"
schedule:
interval: "weekly"
day: "friday"
time: "00:30"
target-branch: "dev"
assignees:
- "hibare"
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
name: "Dev Build"
name: "Nightly Build"

# When its time to do a release do a full cross platform build for all supported
# architectures and push all of them to Docker Hub & Github container registry.
# Only trigger on semver shaped tags.
on:
push:
branches:
- dev
schedule:
- cron: "0 0 * * *"

jobs:
docker-image-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: dev

- name: Docker meta
id: meta
Expand Down
2 changes: 1 addition & 1 deletion backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ djangorestframework==3.14.0
# via
# -r requirements.in
# djangorestframework-simplejwt
djangorestframework-simplejwt==5.2.2
djangorestframework-simplejwt==5.3.0
# via -r requirements.in
drf-writable-nested==0.7.0
# via -r requirements.in
Expand Down
42 changes: 21 additions & 21 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
"lodash.clonedeep": "^4.5.0",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"quasar": "^2.12.4",
"quasar": "^2.12.5",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@quasar/vite-plugin": "^1.4.1",
"@vitejs/plugin-vue": "^4.2.3",
"sass": "^1.65.1",
"@vitejs/plugin-vue": "^4.3.1",
"sass": "^1.66.1",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vue-tsc": "^1.8.8"
Expand Down

0 comments on commit cb1ed19

Please sign in to comment.