actions update #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
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout your repository using git | |
| uses: actions/checkout@v4 | |
| - name: Install, build, and upload your site | |
| uses: withastro/action@v3 | |
| - name: Add .nojekyll | |
| run: touch ./dist/.nojekyll # Adjust "dist" if your output dir is different | |
| # If your output is not "dist", change it to your actual build output directory |