diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2023-01-27 21:14:42 +0000 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2023-01-27 21:33:17 +0000 |
| commit | b67096636fd6ef518ee624a0797d38d474aeebee (patch) | |
| tree | fb8e1682552c80dc2506b8bc22d2ad0404da273b | |
| parent | a7ae00115ed8d65c64830d93ed5e502f122480ef (diff) | |
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.
| -rw-r--r-- | .github/workflows/publish.yml | 3 |
1 files changed, 2 insertions, 1 deletions
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: | |
