Skip to content

Commit

Permalink
Add Github workflows to automatically build docker images (#28)
Browse files Browse the repository at this point in the history
* Add Github workflows to automatically build docker images

* Add workflow for cli container
  • Loading branch information
Oscariremma authored Mar 26, 2024
1 parent 659fbe7 commit d9ecc5e
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/cli.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build cli tool

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-cli:latest
file: ./Dockerfile
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 d9ecc5e

Please sign in to comment.