-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b6e4aff
commit fddb9f3
Showing
1 changed file
with
9 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,13 +19,6 @@ jobs: | |
|
||
- name: Install 🔧 | ||
run: yarn install | ||
|
||
- name: Build 🔧 | ||
run: | | ||
yarn build:production | ||
touch out/.nojekyll | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN_SECRET }} | ||
|
||
- uses: actions/checkout@v3 | ||
- name: Download csv file of member form in gsheet | ||
|
@@ -34,10 +27,15 @@ jobs: | |
- name: run python script to convert csv to json | ||
run: | | ||
cd ./scripts | ||
python script.py | ||
cp ./dataMember.json ../data/dataMember.json | ||
cd .. | ||
python ./scripts/script.py | ||
cp ./dataMember.json ./data/dataMember.json | ||
- name: Build 🔧 | ||
run: | | ||
yarn build:production | ||
touch out/.nojekyll | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN_SECRET }} | ||
|
||
- name: Deploy 🚀 | ||
uses: JamesIves/[email protected] | ||
|