Skip to content

Commit 9dedd6c

Browse files
authored
Merge branch 'source' into source
2 parents 71ed5fc + abc1dc9 commit 9dedd6c

File tree

10 files changed

+3430
-3979
lines changed

10 files changed

+3430
-3979
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build and Deploy to GitHub pages
2+
on:
3+
push:
4+
branches:
5+
- source
6+
jobs:
7+
build-and-deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout 🛎️
11+
uses: actions/[email protected] # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
12+
with:
13+
persist-credentials: false
14+
15+
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
16+
run: |
17+
yarn
18+
yarn build
19+
20+
- name: Deploy 🚀
21+
uses: JamesIves/[email protected]
22+
with:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
BRANCH: master
25+
FOLDER: build

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ For example:
1818
```
1919
git clone https://github.com/<github_username>/firstcontributions.github.io.git
2020
```
21-
where `<github_sername>` is your GitHub username.
21+
where `<github_username>` is your GitHub username.
2222
Here you're copying the contents of your firstcontributions.github.io repository on GitHub to your computer.
2323

2424
## Running The Project

0 commit comments

Comments
 (0)