From 6118852860df93811dc274c47bdf3f9ea46f6a3f Mon Sep 17 00:00:00 2001 From: Heisenberg Date: Sat, 24 Feb 2024 05:24:56 +0200 Subject: [PATCH] github retype action --- .github/workflows/retype-action.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..39aa5ee --- /dev/null +++ b/.github/workflows/retype-action.yml @@ -0,0 +1,24 @@ +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