From b67096636fd6ef518ee624a0797d38d474aeebee Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Fri, 27 Jan 2023 21:14:42 +0000 Subject: ci: Fix Docker build for web UI This change fixes the Docker build for the web UI in the release workflow. Previously, the job would fail because the path "opendc-web/opendc-web-ui" couldn't be found. This is due to not checking out the repository beforehand. See https://github.com/docker/build-push-action#usage. --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ce25802f..129cc049 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,7 +29,6 @@ jobs: with: push: true file: opendc-web/opendc-web-runner/Dockerfile - repository: atlargeresearch/opendc tags: ${{ steps.prep.outputs.tags }} push-api: name: Push API to DockerHub @@ -59,6 +58,8 @@ jobs: name: Push UI to DockerHub runs-on: ubuntu-22.04 steps: + - name: Checkout repository + uses: actions/checkout@v3 - name: Prepare id: prep run: | -- cgit v1.2.3