Merge pull request #180 from Portaltocoding/179-pixel-art #4
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: Deploy Website | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Deploying to surge | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 22 | |
- run: npm install -g surge | |
- run: surge ./staff/carlos-fernandez/pixel-art ${{ secrets.SURGE_DOMAIN }} --token ${{ secrets.SURGE_TOKEN }} |