Typo #109
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 to neociteis | |
| on: | |
| push: | |
| branches: | |
| - master | |
| env: | |
| node-version: lts/* | |
| FORCE_COLOR: 1 | |
| concurrency: # prevent concurrent deploys doing starnge things | |
| group: deploy-to-neocities | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{env.node-version}} | |
| check-latest: true | |
| - run: npm i | |
| - run: npm run build | |
| - name: Deploy to neocities | |
| uses: bcomnes/deploy-to-neocities@v3 | |
| with: | |
| api_token: ${{ secrets.NEOCITIES_API_TOKEN }} | |
| cleanup: true | |
| neocoties_supporter: true | |
| preview_before_deploy: true |