Deploy GitHub Pages #49
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 GitHub Pages | |
| on: | |
| push: | |
| branches: ["main"] | |
| schedule: | |
| - cron: "17 2 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| concurrency: | |
| group: github-pages-deploy | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Setup Node | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install ImageMagick | |
| run: sudo apt-get update && sudo apt-get install -y imagemagick | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Audit Dependencies | |
| run: npm run audit:dependencies | |
| - name: Resolve base path | |
| run: | | |
| if [ "${{ github.event.repository.name }}" = "${{ github.repository_owner }}.github.io" ]; then | |
| echo "VITE_BASE_PATH=/" >> "$GITHUB_ENV" | |
| else | |
| echo "VITE_BASE_PATH=/${{ github.event.repository.name }}/" >> "$GITHUB_ENV" | |
| fi | |
| - name: Sync Content | |
| run: npm run content:sync | |
| - name: Check official conference sources | |
| if: github.event_name != 'push' | |
| run: npm run deadlines:refresh | |
| - name: Validate Content | |
| run: npm run validate:content | |
| - name: Build Site | |
| run: npm run build:static | |
| - name: Deploy to gh-pages | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./dist |