Skip to content

Commit

Permalink
Updated config
Browse files Browse the repository at this point in the history
  • Loading branch information
nathnp committed Jul 13, 2024
1 parent db53c40 commit 912dca6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ jobs:
- name: Prep CSS file
run: mkdir site && mv style.css site/style.css
- name: Add redirect index
run: printf "<!DOCTYPE html> \n <head> \n <meta http-equiv="refresh" content="0; url=http://nthp.me/"/> \n </head> \n </html>" >> site/index.html
run: echo "<!DOCTYPE html>" >> site/index.html
run: echo "<html lang="en-us" dir="ltr">" >> site/index.html
run: echo "<head>" >> site/index.html
run: echo '<meta http-equiv="refresh" content="0; url=https://github.com/nathnp/nthp.me-css"/>' >> site/index.html
run: echo "</head>" >> site/index.html
run: echo "</html>" >> site/index.html
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
Expand Down

0 comments on commit 912dca6

Please sign in to comment.