summaryrefslogtreecommitdiff
path: root/.github/workflows/publish.yml
diff options
context:
space:
mode:
authorvincent van beek <vincent@vlogic.nl>2026-03-30 15:31:58 +0200
committerGitHub <noreply@github.com>2026-03-30 14:31:58 +0100
commit0ae172363b8d9544b3cad15cfcb6733f2c814afb (patch)
tree72bacbe8769e9ce3d5b3db77fa7ed41ab2d78d09 /.github/workflows/publish.yml
parent048bf777997bdbf599240645fc66612c98abf3c2 (diff)
attempt to fix the deploy of the new UI setup (#394)
Diffstat (limited to '.github/workflows/publish.yml')
-rw-r--r--.github/workflows/publish.yml27
1 files changed, 0 insertions, 27 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 294be1d1..d076dc87 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -57,33 +57,6 @@ jobs:
push: true
file: opendc-web/opendc-web-server/Dockerfile
tags: ${{ steps.prep.outputs.tags }}
- push-ui:
- name: Push UI to DockerHub
- runs-on: ubuntu-22.04
- steps:
- - name: Checkout repository
- uses: actions/checkout@v4
- - name: Prepare
- id: prep
- run: |
- DOCKER_IMAGE=ghcr.io/atlarge-research/opendc-web-ui
- VERSION=3.0-SNAPSHOT
- if [[ $GITHUB_REF == refs/tags/v* ]]; then
- VERSION=${GITHUB_REF#refs/tags/v}
- fi
- echo "tags=${DOCKER_IMAGE}:${VERSION}" >> $GITHUB_OUTPUT
- - name: Login to DockerHub
- uses: docker/login-action@v3
- with:
- registry: ghcr.io
- username: ${{ github.actor }}
- password: ${{ secrets.GITHUB_TOKEN }}
- - name: Push to Docker Hub
- uses: docker/build-push-action@v6
- with:
- push: true
- context: opendc-web/opendc-web-ui
- tags: ${{ steps.prep.outputs.tags }}
publish-maven-central:
name: Publish to Maven Central
runs-on: ubuntu-latest