This repository has been archived by the owner on Sep 7, 2024. It is now read-only.
feat: threads social to footer (#736) #441
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
--- | |
name: GitHub Pages Deploy | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-and-deploy: | |
name: Build and Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build | |
run: npm install | |
- name: Deploy | |
run: | | |
git config --global user.name 'wemakedevs' | |
git config --global user.email '[email protected]' | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | |
CI=false npm run deploy |