Skip to content

feat: #50 Update helix-swarm to 2025.1. #36

feat: #50 Update helix-swarm to 2025.1.

feat: #50 Update helix-swarm to 2025.1. #36

Workflow file for this run

name: ci
on:
push:
branches:
- master
tags:
- 'v*'
jobs:
path-context:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set image tags for helix-p4d
id: p4d_meta
uses: docker/metadata-action@v5
with:
images: hawkmothstudio/helix-p4d
- name: Set image tags for helix-swarm
id: swarm_meta
uses: docker/metadata-action@v5
with:
images: hawkmothstudio/helix-swarm
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build and push helix-p4d
uses: docker/build-push-action@v6
with:
context: helix-p4d
file: ./helix-p4d/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.p4d_meta.outputs.tags }}
labels: ${{ steps.p4d_meta.outputs.labels }}
- name: Build and push helix-swarm
uses: docker/build-push-action@v6
with:
context: helix-swarm
file: ./helix-swarm/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.swarm_meta.outputs.tags }}
labels: ${{ steps.swarm_meta.outputs.labels }}