Skip to content

Commit

Permalink
enable gale add workflow to build dev image
Browse files Browse the repository at this point in the history
  • Loading branch information
gheorghelupu17 committed May 31, 2024
1 parent 695b1cb commit dc5b443
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 16 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build-dev-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
on:
push:
branches:
- 'develop'


name: Build Docker image

jobs:
build-docker-image:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: code4romania/bursa-binelui
tags: develop

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
2 changes: 1 addition & 1 deletion database/seeders/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ private function seedArticleCategories(): void
foreach ($articleCategories as $category) {
ArticleCategory::factory()
->name($category)
->hasArticles(4)
->hasArticles(4)
->create();
}
}
Expand Down
30 changes: 15 additions & 15 deletions resources/js/Components/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -250,16 +250,16 @@ const explore = [
description: 'Descoperă proiectele organizate de BCR.',
href: route('bcr.index'),
},
// {
// name: 'Campionatul de Bine',
// description: 'O competiție a faptelor bune. Alătură-te!',
// href: route('championship'),
// },
// {
// name: 'Gale bursa binelui',
// description: 'Proiectele cu cel mai mare impact, pe regiuni. Vezi participanții!',
// href: route('regional'),
// },
{
name: 'Campionatul de Bine',
description: 'O competiție a faptelor bune. Alătură-te!',
href: route('championship'),
},
{
name: 'Gale bursa binelui',
description: 'Proiectele cu cel mai mare impact, pe regiuni. Vezi participanții!',
href: route('regional'),
},
];
/** About menu links. */
Expand All @@ -270,11 +270,11 @@ const about = [
'Află mai multe despre inițiativa noastră și cum poți să te alături, atât ca organizație, cât și ca donator sau voluntar.',
href: route('page', 'about'),
},
// {
// name: 'Evolutia faptelor bune',
// description: 'Vezi evoluția faptelor bune pe Bursa Binelui în timp, cu ajutorul unor grafice.',
// href: route('evolution'),
// },
{
name: 'Evolutia faptelor bune',
description: 'Vezi evoluția faptelor bune pe Bursa Binelui în timp, cu ajutorul unor grafice.',
href: route('evolution'),
},
{
name: 'Întrebări frecvente',
description: 'Ai o neclaritate? Găsește răspunsul aici.',
Expand Down

0 comments on commit dc5b443

Please sign in to comment.