Skip to content

PROCESS: Hyperglosae frontend is published as a docker image (DON'T B… #7

PROCESS: Hyperglosae frontend is published as a docker image (DON'T B…

PROCESS: Hyperglosae frontend is published as a docker image (DON'T B… #7

Workflow file for this run

name: Publish
on:
push:
# branches:
# - 'main'
jobs:
# build:
# uses: ./.github/workflows/build.yml
tests:
uses: ./.github/workflows/tests.yml

Check failure on line 14 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

error parsing called workflow ".github/workflows/publish.yml" -> "./.github/workflows/tests.yml" (source branch with sha:4737d7eb989c3b9e6a521bce9d1cddce7cc6db1d) : workflow is not reusable as it is missing a `on.workflow_call` trigger
publish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download sources
uses: actions/checkout@v4
- name: Get frontend build
uses: actions/download-artifact@v4
with:
name: frontend-build
path: frontend/build
- 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
with:
username: benel
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: . #No checkout
push: true
tags: benel/hyperglosae:latest