Skip to content

Commit

Permalink
Add Github workflows to automatically build docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
Oscariremma committed Mar 23, 2024
1 parent 803fd92 commit 1522430
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/web-backend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build web backend

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:
name: Build docker container

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
if: ${{ github.ref == 'refs/heads/master' }}
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker image (and push on master)
uses: docker/[email protected]
with:
push: ${{ github.ref == 'refs/heads/master' }}
tags: ghcr.io/cthit/goldapps-web-backend:latest
file: ./Dockerfile.web
31 changes: 31 additions & 0 deletions .github/workflows/web-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build web frontend

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:
name: Build docker container

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
if: ${{ github.ref == 'refs/heads/master' }}
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker image (and push on master)
uses: docker/[email protected]
with:
push: ${{ github.ref == 'refs/heads/master' }}
tags: ghcr.io/cthit/goldapps-web-frontend:latest
context: frontend

0 comments on commit 1522430

Please sign in to comment.