Skip to content

Commit 4d5f2dc

Browse files
neerajgangwarNeeraj Gangwar
and
Neeraj Gangwar
authored
Use master for source code for personal/organization webpages and update the document (alshedivat#344)
Co-authored-by: Neeraj Gangwar <[email protected]>
1 parent 89efedc commit 4d5f2dc

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.github/workflows/deploy.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ on:
44
push:
55
branches:
66
- master
7-
- source
87
pull_request:
98
branches:
109
- master
11-
- source
1210

1311
jobs:
1412
deploy:
@@ -43,11 +41,7 @@ jobs:
4341
elif [[ ${GITHUB_REF} = refs/heads/* ]]; then # branch, e.g. master, source etc
4442
echo "::set-output name=SRC_BRANCH::${GITHUB_REF#refs/heads/}"
4543
fi
46-
if [[ ${{ github.repository }} = *.github.io ]]; then # user/org repo
47-
echo "::set-output name=DEPLOY_BRANCH::master"
48-
else
49-
echo "::set-output name=DEPLOY_BRANCH::gh-pages"
50-
fi
44+
echo "::set-output name=DEPLOY_BRANCH::gh-pages"
5145
- name: Deploy website
5246
run: yes | bin/deploy --verbose ${{ steps.setup.outputs.NO_PUSH }}
5347
--src ${{ steps.setup.outputs.SRC_BRANCH }}

README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,10 @@ Starting version [v0.3.5](https://github.com/alshedivat/al-folio/releases/tag/v0
125125
**For personal and organization webpages:**
126126
- Rename your repository to `<your-github-username>.github.io` or `<your-github-orgname>.github.io`.
127127
- Click on **Actions** tab and **Enable GitHub Actions**; you no need to worry about creating any workflows as everything has already been set for you.
128-
- In the **Settings**, select **Branches** and [rename the branch](https://docs.github.com/en/github/administering-a-repository/renaming-a-branch) with the source code from `master` to `source`. From now on, this will be your default branch. Any changes you make should be committed and pushed to this branch.
129128
- Make sure the `url` and `baseurl` fields in `_config.yml` are empty.
130129
- Make any other changes to your webpage, commit, and push. This will automatically trigger the **Deploy** action.
131130
- Wait for a few minutes and let the action complete. You can see the progress in the **Actions** tab. If completed successfully, in addition to the `source` branch, your repository should now have a newly built `master` branch.
132-
- Finally, again in the **Settings**, in the Pages section, set the branch to `master` (**NOT** to `source`).
133-
134-
**NOTE**: you **must** do all your changes in the `source` branch (the one you used to push) **NOT the master** one; this last one is used for **deploying** by Github Pages and it is not suitable for pushing changes.
131+
- Finally, in the **Settings**, in the Pages section, set the branch to `gh-pages` (**NOT** to `master`).
135132

136133
<details><summary><strong>Manual deployment to GitHub Pages:</strong></summary>
137134

0 commit comments

Comments
 (0)