Skip to content

Commit

Permalink
release tags and every commit from branches
Browse files Browse the repository at this point in the history
  • Loading branch information
rjonczy committed Nov 1, 2023
1 parent d05ec4b commit 8e00e7c
Showing 1 changed file with 30 additions and 6 deletions.
36 changes: 30 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,27 @@ jobs:
with:
fetch-depth: 0

- 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:
path: scripts/hyperspace.Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 8e00e7c

Please sign in to comment.