Skip to content

Commit

Permalink
Merge pull request #15 from ember-learn/turn-off-gh-pages
Browse files Browse the repository at this point in the history
stop deploying to gh-pages since we're using netlify
  • Loading branch information
jaredgalanis authored Jul 5, 2024
2 parents ce8be1c + e9fbe74 commit 63fbf2a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2,246 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "actions@users.noreply.github.com"
# 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
Loading

0 comments on commit 63fbf2a

Please sign in to comment.