diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2023-01-27 22:19:22 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-27 22:19:22 +0000 |
| commit | dd9b7b1e0c59c010fb191a1ea1d805f2748fb216 (patch) | |
| tree | 25b6112634dbd7bd46ec8eca2656f13fcc9ceb3c /.github/workflows | |
| parent | a7ae00115ed8d65c64830d93ed5e502f122480ef (diff) | |
| parent | c31c80293f27ad474a2b9525e82e535b5a9076ae (diff) | |
merge: Address issues with pre-release workflow (#129)
This pull request addresses the issues encountered during the release of the last
release candidate (v3.0-rc1).
## Implementation Notes :hammer_and_pick:
* Fix Docker build for web UI
* Allow version to be overridable
* Update latest release in documentation
Diffstat (limited to '.github/workflows')
| -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: | |
