diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..591605f --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,40 @@ +name: Publish to GH Pages +on: + push: + branches: + - main + pull_request: + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout source + uses: actions/checkout@v3 + with: + submodules: true + + - name: Checkout destination + uses: actions/checkout@v3 + if: github.ref == 'refs/heads/main' + with: + ref: gh-pages + path: built-site + + - name: Setup Hugo + run: | + curl -L -o /tmp/hugo.tar.gz 'https://github.com/gohugoio/hugo/releases/download/v0.110.0/hugo_extended_0.110.0_linux-amd64.tar.gz' + tar -C ${RUNNER_TEMP} -zxvf /tmp/hugo.tar.gz hugo + - name: Build + run: ${RUNNER_TEMP}/hugo + + - name: Deploy + if: github.ref == 'refs/heads/main' + run: | + cp -R public/* ${GITHUB_WORKSPACE}/built-site/ + cd ${GITHUB_WORKSPACE}/built-site + git add . + git config user.name 'Jonah Ramponi' + git config user.email 'jonahramponi2@gmail.com' + git commit -m 'Updated site' + git push \ No newline at end of file diff --git a/config.yml b/config.yml index bee3f42..d4ab9a5 100644 --- a/config.yml +++ b/config.yml @@ -1,4 +1,4 @@ -baseURL: http://example.org/ +baseURL: http://jonah-ramponi.github.io/jonahml/ languageCode: en-us title: My New Hugo Site theme: PaperMod \ No newline at end of file