-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stop deploying to gh-pages since we're using netlify
- Loading branch information
Showing
3 changed files
with
2 additions
and
2,246 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 |
---|---|---|
|
@@ -56,37 +56,3 @@ jobs: | |
PERCY_PARALLEL_NONCE: ${{ env.PERCY_PARALLEL_NONCE }} | ||
PERCY_PARALLEL_TOTAL: ${{ env.PERCY_PARALLEL_TOTAL }} | ||
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} | ||
|
||
|
||
deploy-app: | ||
name: Deploy app | ||
needs: [lint, test-app] | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
# Only run on pushes to main branch that aren't from the cron workflow | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
steps: | ||
- name: Check out a copy of the repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set a Git user | ||
run: | | ||
# Set a Git user for committing | ||
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
# Copy the Git Auth from the local config | ||
git config --global "http.https://github.com/.extraheader" \ | ||
"$(git config --local --get http.https://github.com/.extraheader)" | ||
- name: Use Node.js ${{ env.NODE_VERSION }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: 'npm' | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Install dependencies | ||
run: npm install --frozen-lockfile | ||
|
||
- name: Deploy | ||
run: npm run deploy |
Oops, something went wrong.