Skip to content

Commit fb86fe2

Browse files
committed
Fixed actions.
1 parent 0ad9b6f commit fb86fe2

3 files changed

Lines changed: 8 additions & 10 deletions

File tree

.github/workflows/Deploy_site.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,12 @@ jobs:
2222
- run: mkdocs build
2323

2424
deploy:
25-
environment:
26-
name: github-pages
27-
url: ${{ steps.deployment.outputs.page_url }}
2825
runs-on: ubuntu-latest
2926
needs: build
3027
steps:
31-
- name: Deploy to GitHub Pages
32-
id: deployment
33-
uses: actions/deploy-pages@v4
34-
35-
#- run: mkdocs gh-deploy --force
28+
- uses: actions/checkout@v2
29+
- uses: actions/setup-python@v2
30+
with:
31+
python-version: 3.x
32+
- run: pip install mkdocs
33+
- run: pip install -r requirements.txt

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-python@v2
15-
- uses: actions/deploy-pages@v4
1615
with:
1716
python-version: 3.x
1817
- run: pip install -r requirements.txt

docs/version_control/BasicGit.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,9 @@ Github is a website that hosts Git repositories. The Robolancers store all of th
8383

8484
![Git commands in vscode GUI](../assets/git_vscode.png)
8585

86-
### Git branches menu (Accessed by clicking on the branch name at the bottom left)
86+
### Git branches menu
8787

88+
Accessed by clicking on the branch name at the bottom left)
8889
![Github branch menu in Vscode GUI](../assets/github_branch_vscode.png)
8990

9091
### Merge in another branch in vscode

0 commit comments

Comments
 (0)