fix(landing): correct all GitHub and Pages URLs to mrgodhani/sql-assi… #4
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 Landing Page | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'landing/**' | |
| - 'screenshot.png' | |
| - 'build/icon.png' | |
| - 'build/icon.ico' | |
| release: | |
| types: [published] | |
| permissions: | |
| contents: write | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Prepare deploy directory | |
| run: | | |
| mkdir -p deploy/assets | |
| cp -r landing/. deploy/ | |
| cp screenshot.png deploy/assets/screenshot.png | |
| cp build/icon.png deploy/assets/icon.png | |
| cp build/icon.ico deploy/assets/icon.ico | |
| - name: Deploy to gh-pages | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| folder: deploy | |
| branch: gh-pages | |
| clean: true |