typo changes #32
This file contains hidden or 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: deploy-surge | ||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| # steps: | ||
| # - uses: actions/checkout@v2 | ||
| # | ||
| # - name: Setup Node | ||
| # uses: actions/setup-node@v2-beta | ||
| # with: | ||
| # node-version: 12 | ||
| # | ||
| # - name: Build React App | ||
| # run: | | ||
| # npm install # Install Dependencies | ||
| # CI=false npm run build # CI=false to ignore warnings | ||
| # | ||
| # - name: Install Surge | ||
| # run: npm install -g surge | ||
| # | ||
| # - name: Deploy to Surge | ||
| # run: surge ./build ${{secrets.SURGE_DOMAIN}} --token ${{secrets.SURGE_TOKEN}} | ||
| # | ||