Skip to content

2108 ssf GitHub workflow standardization (#5) #37

2108 ssf GitHub workflow standardization (#5)

2108 ssf GitHub workflow standardization (#5) #37

Workflow file for this run

name: buildall
on:
workflow_dispatch:
push:
branches:
- 'dev'
# workflow_run:
# workflows: ["Tag & Release"]
# branch: ["*"]
# types:
# - completed
env:
GHCR_REGISTRY: ghcr.io
GHCR_REPOSITORY: raft-tech
DOCKERHUB_REGISTRY: docker.io
DOCKERHUB_REPOSITORY: rafttech
SSF_REGISTRY: nexus.ssf.sclzdev.net
SSF_REPOSITORY: raft
IMAGE_NAME: data-fabric-arcadedb
TAG: 'dev'
# TAG: ${{'dev' || github.event.inputs.tag }}
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.89.4'
extended: true
- name: Set up QEMU
uses: docker/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Login to GHCR
uses: docker/[email protected]
with:
registry: ${{ env.GHCR_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.CR_PAT }}
- name: Login to SSF Registry
uses: docker/[email protected]
with:
registry: ${{ env.SSF_REGISTRY }}
username: ${{ secrets.SSF_REGISTRY_USERNAME }}
password: ${{ secrets.SSF_REGISTRY_PASSWORD }}
- name: List Files
run: ls
- name: Build and push - GHCR
uses: docker/[email protected]
with:
# TODO update arcade build final name to a consistent name, and update here
context: .
file: ./Dockerfile-multi
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ env.GHCR_REGISTRY }}/${{ env.GHCR_REPOSITORY }}/${{ env.IMAGE_NAME }}:${{ env.TAG }}
${{ env.SSF_REGISTRY }}/${{ env.SSF_REPOSITORY }}/${{ env.IMAGE_NAME }}:${{ env.TAG }}