Build, test and deploy website (if needed) #75
Workflow file for this run
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: build_test_deploy | |
run-name: Build, test and deploy website (if needed) | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build_and_test: | |
runs-on: alpine-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# with: | |
# fetch-depth: 0 | |
- name: Setup prerequisites | |
run: apk add hugo | |
- name: Build | |
run: hugo | |
- name: "Fix security.txt" | |
run: mkdir public/.well-known && (cd public/.well-known && ln -s ../security.txt) && ls -al public/.well-known | |
- name: ".htaccess" | |
run: cp .htaccess out/ | |
# - name: Test HTML code | |
# run: | | |
# sudo apt-get update -y | |
# sudo apt-get install python3-pip libcurl4 -y | |
# pip3 install html5validator | |
# sudo gem install --no-document html-proofer | |
# ./proof_html.sh || exit 0 | |
- name: rsync deploy | |
uses: burnett01/[email protected] | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
switches: -avzr --delete | |
path: public/ | |
remote_path: htdocs/beta | |
remote_host: ${{ secrets.DEPLOY_HOST }} | |
remote_user: ${{ secrets.DEPLOY_USER }} | |
remote_key: ${{ secrets.DEPLOY_KEY }} | |
- name: Deploy GiutHub pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
folder: /admin # The folder the action should deploy. |