Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Github workflows to automatically build docker images #28

Merged
merged 2 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oscariremma marked this conversation as resolved.
Show resolved Hide resolved
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
Loading