Add PDF artifact upload to CI workflow and update .gitignore and READ… #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build images | |
on: | |
push: | |
paths: | |
- '.github/workflows/build.yml' | |
- 'project/*' | |
jobs: | |
build-images: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
- name: Copy environment files | |
run: | | |
cp project/backend/.env.example project/backend/.env | |
cp project/frontend/.env.example project/frontend/.env | |
- name: Build images | |
run: cd project && docker compose build |