Skip to content

Commit

Permalink
Merge branch 'master' into a
Browse files Browse the repository at this point in the history
  • Loading branch information
mina86 authored Nov 13, 2023
2 parents 1bf72ff + b5c735f commit f6da9ba
Show file tree
Hide file tree
Showing 13 changed files with 5,187 additions and 4,953 deletions.
42 changes: 36 additions & 6 deletions .github/workflows/hyperspace-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,27 @@ name: "Build and publish Hyperspace Docker image"
on:
push:
branches:
- master
- '*'
tags:
- 'v*'

env:
IMAGE_NAME: ${{ github.repository }}

jobs:

build-and-publish:

name: Build & push docker image

runs-on:
- self-hosted
- x64-monster

concurrency:
group: hyperspace-docker-image-${{ github.ref }}
cancel-in-progress: true

strategy:
fail-fast: true

Expand All @@ -31,14 +42,33 @@ jobs:
with:
fetch-depth: 0

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

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

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=ref,event=branch
type=sha,prefix={{branch}}-
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build Docker image
run: make -f hyperspace/Makefile build-docker-image-hyperspace

- name: Docker push
run: make -f hyperspace/Makefile publish-docker-image-hyperspace
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
file: scripts/hyperspace.Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Loading

0 comments on commit f6da9ba

Please sign in to comment.