diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-08-30 21:34:34 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-08-30 21:34:34 -0500 |
| commit | 2e19dd74c660b8b7ace5eb500d33870e075d8677 (patch) | |
| tree | d16c0f055228231c78aafeeba522ef5afa519fa2 /.github/workflows/deploy.yml | |
| parent | 7872741fc19b3fbcfa0482d40490fbdfda189371 (diff) | |
Update workflow
Diffstat (limited to '.github/workflows/deploy.yml')
| -rw-r--r-- | .github/workflows/deploy.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 61d2410..9932105 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,12 +11,16 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Build static files + - name: Setup node uses: actions/setup-node@v2 with: node-version: '14' - - run: npm ci - - run: npm run build + + - name: Install dependencies + run: npm ci + + - name: Build static files + run: npm run build - name: Init repo in dist folder and commit static files run: | |
