homebox/.github/workflows/partial-publish.yaml

66 lines
1.8 KiB
YAML
Raw Normal View History

2022-10-11 03:26:29 +00:00
name: Frontend / E2E
on:
workflow_call:
inputs:
tag:
required: true
type: string
release:
required: false
type: boolean
default: false
2022-10-11 03:38:39 +00:00
secrets:
2022-10-11 03:39:15 +00:00
GH_TOKEN:
2022-10-11 03:38:39 +00:00
required: true
2022-10-11 03:26:29 +00:00
jobs:
publish:
name: "Publish Homebox"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
with:
image: tonistiigi/binfmt:latest
platforms: all
- name: install buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
install: true
- name: login to container registry
run: docker login ghcr.io --username hay-kot --password $CR_PAT
env:
2022-10-11 03:39:15 +00:00
CR_PAT: ${{ secrets.GH_TOKEN }}
2022-10-11 03:26:29 +00:00
- name: build nightly the image
2022-10-11 17:15:57 +00:00
if: ${{ inputs.release == false }}
2022-10-11 17:15:10 +00:00
run: |
2022-10-11 17:21:06 +00:00
docker build --push --no-cache \
2022-10-11 17:27:46 +00:00
--tag=ghcr.io/hay-kot/homebox:${{ inputs.tag }} \
2022-10-11 17:21:06 +00:00
--build-arg=COMMIT=$(git rev-parse HEAD) \
--build-arg=BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
--platform=linux/amd64,linux/arm64,linux/arm/v7 .
2022-10-11 03:26:29 +00:00
2022-10-11 17:15:57 +00:00
- name: build release tagged the image
if: ${{ inputs.release == true }}
run: |
2022-10-11 17:21:06 +00:00
docker build --push --no \
2022-10-11 17:15:57 +00:00
--tag ghcr.io/hay-kot/homebox:nightly \
--tag ghcr.io/hay-kot/homebox:latest \
2022-10-11 17:27:46 +00:00
--tag ghcr.io/hay-kot/homebox:${{ inputs.tag }} \
2022-10-11 17:15:57 +00:00
--build-arg COMMIT=$(git rev-parse HEAD) \
--build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
--platform linux/amd64,linux/arm64,linux/arm/v7 .