From 3bf0e6040e647c955899f8b51ac17125615ad77e Mon Sep 17 00:00:00 2001 From: Weiszhaar William Date: Fri, 15 Sep 2023 11:44:46 -0400 Subject: [PATCH] added build action --- .github/workflows/retype-action.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/retype-action.yml diff --git a/.github/workflows/retype-action.yml b/.github/workflows/retype-action.yml new file mode 100644 index 0000000..5a5e516 --- /dev/null +++ b/.github/workflows/retype-action.yml @@ -0,0 +1,18 @@ +name: Publish Retype powered website to GitHub Pages +on: + workflow_dispatch: + push: + branches: + - main +jobs: + publish: + name: Publish to retype branch + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v3 + - uses: retypeapp/action-build@latest + - uses: retypeapp/action-github-pages@latest + with: + update-branch: true \ No newline at end of file