Skip to content

Commit

Permalink
Add build action on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
BaldissaraMatheus committed Oct 16, 2024
1 parent c2fac01 commit d0e968e
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 2 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build and deploy

on:
pull_request:
types:
- opened

jobs:
build:
name: Build

runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- name: Gather Docker metadata
id: docker-meta
uses: docker/metadata-action@v4
with:
images: |
baldissaramatheus/tasks.md
tags: |
# Process semver like tags
# For a tag x.y.z or vX.Y.Z, output an x.y.z, x.y and x image tag
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Login to Docker Hub
uses: docker/login-action@v2
# Don't attempt to login is not pushing to Docker Hub
if: github.event_name != 'pull_request'
with:
username: "${{ secrets.DOCKER_USERNAME }}"
password: ${{ secrets.DOCKER_PASSWORD }}

# Login to GitHub container registry could happen here

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: false
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ COPY frontend/ /app

WORKDIR /app
RUN set -eux \
&& npm ci \
&& npm ci --no-audit \
&& npm run build

COPY backend/ /api/

WORKDIR /api
RUN set -eux \
&& npm ci
&& npm ci --no-audit

FROM alpine:3.20 AS final
ARG PUID=0
Expand Down

0 comments on commit d0e968e

Please sign in to comment.