Skip to content

Commit

Permalink
GHA for building and releasing improvements (#446)
Browse files Browse the repository at this point in the history
* release tags and every commit from branches

* change to file

* setup buildx

* use bullseye
  • Loading branch information
rjonczy committed Nov 2, 2023
1 parent b9e3232 commit 6cd08e1
Showing 1 changed file with 36 additions and 7 deletions.
43 changes: 36 additions & 7 deletions .github/workflows/hyperspace-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,27 @@ name: "Build and publish Hyperspace Docker image"
on:
push:
branches:
- master
- substrate-39
- '*'
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 @@ -32,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 }}

0 comments on commit 6cd08e1

Please sign in to comment.