Skip to content

Commit

Permalink
Add build adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
BaldissaraMatheus committed Oct 16, 2024
1 parent 770298e commit e92a326
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ jobs:
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

Expand Down
49 changes: 49 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build

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
if: github.event_name != 'pull_request'
with:
username: "${{ secrets.DOCKER_USERNAME }}"
password: ${{ secrets.DOCKER_PASSWORD }}

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

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

- name: Build image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: false

0 comments on commit e92a326

Please sign in to comment.