Skip to content

fix: Update connector ID for Grafana login attributes in reporting se… #542

fix: Update connector ID for Grafana login attributes in reporting se…

fix: Update connector ID for Grafana login attributes in reporting se… #542

Workflow file for this run

name: Docker
on:
push:
branches: [main]
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:latest
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:latest
- 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."