Skip to content

Commit

Permalink
OZ-502: Update GH workflows to allow us to release
Browse files Browse the repository at this point in the history
  • Loading branch information
enyachoke committed May 20, 2024
1 parent c0b1236 commit 17b85e7
Showing 1 changed file with 13 additions and 47 deletions.
60 changes: 13 additions & 47 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,52 +2,18 @@ name: CI

on:
push:
branches: [ main ]
workflow_dispatch:
branches: [main]
pull_request:
branches: [main]
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
if: github.ref == 'refs/heads/main'
uses: docker/login-action@v2
with:
username: mekomsolutions
password: ${{ secrets.DOCKER_HUB_REGISTRY_PASSWORD }}
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4

with:
images: |
mekomsolutions/senaite
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=pep440,pattern={{version}}
type=pep440,pattern={{major}}.{{minor}}
type=sha
-
name: Get commit id
id: vars
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
-
name: Build and push
uses: docker/build-push-action@v2
env:
SERVICE: senaite
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
docker-release:
uses: mekomsolutions/shared-github-workflow/.github/workflows/docker-build-publish.yml@main
with:
download-artifacts: false
image-name: "senaite"
secrets:
DOCKER_HUB_USERNAME: mekomsolutions
DOCKER_HUB_PASSWORD: ${{ secrets.DOCKER_HUB_REGISTRY_PASSWORD }}

0 comments on commit 17b85e7

Please sign in to comment.