refactor: Remove unused cleanup_temp_files function from reports_pdf.py #539
Workflow file for this run
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: Docker | |
on: | |
push: | |
branches: [convert-docx-to-pdf] | |
jobs: | |
build-backend: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.REPO_OWNER }} | |
password: ${{ secrets.REPO_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./backend | |
push: true | |
tags: ghcr.io/socfortress/copilot-backend:lab | |
build-args: | | |
COPILOT_API_KEY=${{ secrets.COPILOT_API_KEY }} | |
# - name: Notify Discord | |
# uses: appleboy/[email protected] | |
# with: | |
# webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }} | |
# webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }} | |
# message: "Docker image for backend has been updated." | |
build-frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.REPO_OWNER }} | |
password: ${{ secrets.REPO_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./frontend | |
push: true | |
tags: ghcr.io/socfortress/copilot-frontend:lab | |
# - name: Notify Discord | |
# uses: appleboy/[email protected] | |
# with: | |
# webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }} | |
# webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }} | |
# message: "Docker image for frontend has been updated." |