Skip to content

Commit dc0d2f1

Browse files
committed
Deploying to gh-pages from @ 0a96dc9 πŸš€
0 parents  commit dc0d2f1

File tree

97 files changed

+5987
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+5987
-0
lines changed

β€Ž.github/workflows/gh-pages.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Build and Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
build-and-deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout πŸ›ŽοΈ
14+
uses: actions/checkout@v2
15+
with:
16+
persist-credentials: false
17+
18+
- uses: actions/setup-python@v2
19+
with:
20+
python-version: '3.8'
21+
22+
- uses: actions/setup-node@v2-beta
23+
with:
24+
node-version: '12'
25+
26+
- name: Install dependencies
27+
run: |
28+
pip install -r requirements.txt
29+
npm install
30+
npm install -g gatsby
31+
32+
- name: Build πŸ”§
33+
run: |
34+
make build
35+
36+
- name: Deploy πŸš€
37+
uses: JamesIves/github-pages-deploy-action@releases/v3
38+
if: github.ref == 'refs/heads/master'
39+
with:
40+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41+
BRANCH: gh-pages
42+
FOLDER: public
43+
SINGLE_COMMIT: true

β€Ž.nojekyll

Whitespace-only changes.

β€ŽCNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jobs.numfocus.org

β€Žapp-1d720526dfd6318cc608.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žapp-1d720526dfd6318cc608.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žchunk-map.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"app":["/app-1d720526dfd6318cc608.js"],"component---src-pages-index-jsx":["/component---src-pages-index-jsx-c7fb0c9449b1ff5ea98a.js"],"component---src-pages-job-jsx":["/component---src-pages-job-jsx-bb883f16693f5396f9dc.js"]}

β€Žcommons-88833f5c55868efab0a6.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/*! @license DOMPurify | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.0.8/LICENSE */

β€Žcommons-88833f5c55868efab0a6.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žcomponent---src-pages-index-jsx-c7fb0c9449b1ff5ea98a.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)