Skip to content

Commit f850c97

Browse files
authored
Update site_url (#28)
1 parent 23ee181 commit f850c97

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/parallel-robot-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Test container image
2828
run: |
2929
for browser in chromium firefox; do
30-
docker run --rm -v $(pwd)/robot_output:/out -e BROWSER=$browser rf-screenshot -d /out -l none -r none -o $browser.xml -N $browser -v URL:https://cicd-tutorials.github.io/cicd-tutorials.net/
30+
docker run --rm -v $(pwd)/robot_output:/out -e BROWSER=$browser rf-screenshot -d /out -l none -r none -o $browser.xml -N $browser -v URL:https://cicd-tutorials.net/
3131
done
3232
- name: Store logs
3333
if: always()

docs/tutorials/jenkins/parallel-robot-pipeline/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ Execute the Robot Framework suites with `docker run`:
6464

6565
```sh
6666
# Chromium
67-
docker run --rm -v $(pwd)/out:/out -e BROWSER=chromium rf-screenshot -d /out -v URL:https://cicd-tutorials.github.io/cicd-tutorials.net/
67+
docker run --rm -v $(pwd)/out:/out -e BROWSER=chromium rf-screenshot -d /out -v URL:https://cicd-tutorials.net/
6868

6969
# Firefox
70-
docker run --rm -v $(pwd)/out:/out -e BROWSER=firefox rf-screenshot -d /out -v URL:https://cicd-tutorials.github.io/cicd-tutorials.net/
70+
docker run --rm -v $(pwd)/out:/out -e BROWSER=firefox rf-screenshot -d /out -v URL:https://cicd-tutorials.net/
7171
```

mkdocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
site_name: CI/CD Tutorials
22
site_description: Tutorials on how to develop CI/CD pipelines and how to configure development environment for working with CI/CD pipelines.
3-
site_url: https://cicd-tutorials.github.io/cicd-tutorials.net/
3+
site_url: https://cicd-tutorials.net/
44
repo_name: cicd-tutorials/cicd-tutorials.net
55
repo_url: https://github.com/cicd-tutorials/cicd-tutorials.net
66
copyright: CI/CD Tutorials is licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-SA 4.0<img style="height:18px!important;margin-left:9px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg" alt=""><img style="height:18px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg" alt=""><img style="height:18px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/sa.svg" alt=""></a>

0 commit comments

Comments
 (0)