Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Create Dockerfile for the frontend #8

Create Dockerfile for the frontend

Create Dockerfile for the frontend #8

Workflow file for this run

name: Build And Deploy
on:
push:
branches: [ "main" ]
permissions:
contents: read
packages: write
jobs:
build-backend:
name: Build the backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
build-root-directory: backend
arguments: build
- name: Docker login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push backend docker image
run: |
pushd backend
docker build -t ghcr.io/mosquito-bytes/carbon-criters-backend:latest .
docker push ghcr.io/mosquito-bytes/carbon-criters-backend:latest
popd