Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GUACAMOLE-1993: Provide built manual as github artifact as part of PR build. #262

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,16 @@ jobs:
- name: Build Docker container
shell: sh
run: |
docker build --pull --no-cache --force-rm .
docker build --pull --no-cache --tag built-manual-image .
docker create --name built-manual-container built-manual-image
docker cp built-manual-container:/usr/local/apache2/htdocs "$RUNNER_TEMP/htdocs"
docker container rm --force --volumes built-manual-container
docker image rm --force built-manual-image

- name: Upload built manual HTTP root
uses: actions/upload-artifact@v4
with:
name: built-manual
path: ${{ runner.temp }}//htdocs
retention-days: 1

Loading