fix pre-commit issues #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: Frontend / E2E | |
# on: | |
# workflow_call: | |
# inputs: | |
# tag: | |
# required: true | |
# type: string | |
# release: | |
# required: false | |
# type: boolean | |
# default: false | |
# secrets: | |
# GH_TOKEN: | |
# required: true | |
# jobs: | |
# publish: | |
# name: "Publish Homebox" | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Set up Go | |
# uses: actions/setup-go@v5 | |
# with: | |
# go-version: "1.22" | |
# cache: true | |
# cache-dependency-path: | | |
# **/go.sum | |
# **/go.mod | |
# - name: Set up QEMU | |
# id: qemu | |
# uses: docker/setup-qemu-action@v3 | |
# with: | |
# image: tonistiigi/binfmt:latest | |
# platforms: all | |
# - name: install buildx | |
# id: buildx | |
# uses: docker/setup-buildx-action@v3 | |
# with: | |
# install: true | |
# - name: login to container registry | |
# run: docker login ghcr.io --username hay-kot --password $CR_PAT | |
# env: | |
# CR_PAT: ${{ secrets.GH_TOKEN }} | |
# - name: build nightly image | |
# if: ${{ inputs.release == false }} | |
# run: | | |
# docker build --push --no-cache \ | |
# --tag=ghcr.io/hay-kot/homebox:${{ inputs.tag }} \ | |
# --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 . | |
# - name: build nightly-rootless image | |
# if: ${{ inputs.release == false }} | |
# run: | | |
# docker build --push --no-cache \ | |
# --tag=ghcr.io/hay-kot/homebox:${{ inputs.tag }}-rootless \ | |
# --build-arg=COMMIT=$(git rev-parse HEAD) \ | |
# --build-arg=BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ | |
# --file Dockerfile.rootless \ | |
# --platform=linux/amd64,linux/arm64,linux/arm/v7 . | |
# - name: build release tagged the image | |
# if: ${{ inputs.release == true }} | |
# run: | | |
# docker build --push --no-cache \ | |
# --tag ghcr.io/hay-kot/homebox:nightly \ | |
# --tag ghcr.io/hay-kot/homebox:latest \ | |
# --tag ghcr.io/hay-kot/homebox:${{ inputs.tag }} \ | |
# --build-arg VERSION=${{ inputs.tag }} \ | |
# --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 . | |
# - name: build release tagged the rootless image | |
# if: ${{ inputs.release == true }} | |
# run: | | |
# docker build --push --no-cache \ | |
# --tag ghcr.io/hay-kot/homebox:nightly-rootless \ | |
# --tag ghcr.io/hay-kot/homebox:latest-rootless \ | |
# --tag ghcr.io/hay-kot/homebox:${{ inputs.tag }}-rootless \ | |
# --build-arg VERSION=${{ inputs.tag }} \ | |
# --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 \ | |
# --file Dockerfile.rootless . |