Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
CaKrome committed Jun 3, 2024
1 parent f12fa81 commit 4c6b84c
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,24 @@ on:
workflow_dispatch:

push:
branches: [ main ]
branches: [main]

pull_request:
branches: [ main ]
branches: [main]

jobs:
build-docker-image:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build Docker image
working-directory: .
run: docker compose build
- name: Checkout
uses: actions/checkout@v4

- name: Create .env file
run: |
cp .env.sample .env
shell: bash

- name: Build Docker image
working-directory: .
run: docker compose build

0 comments on commit 4c6b84c

Please sign in to comment.