Closed jackharrhy closed 2 years ago
Steal stuff from Evan :) https://github.com/evnwttn/ao/blob/main/.github/workflows/gh-pages.yml
instead of:
- name: Install dependencies run: cd my-app && npm install - name: Build run: cd my-app && npm run build - name: Deploy uses: JamesIves/github-pages-deploy-action@v4.2.5 with: branch: gh-pages folder: my-app/build
you would have:
- name: Install dependencies run: npm install - name: Build run: npm run build - name: Deploy uses: JamesIves/github-pages-deploy-action@v4.2.5 with: branch: gh-pages folder: build
Completion of CI/CD for auto gh-pages.
Steal stuff from Evan :) https://github.com/evnwttn/ao/blob/main/.github/workflows/gh-pages.yml
instead of:
you would have: