commit 09b8f2647ee4422aea13c299d8a10e48ea6fff3e parent 311dc8400574be62172c7a177d68d416e79adb9e Author: Amit Dutta <mail@amit.is-a.dev> Date: Wed, 5 Aug 2026 13:24:18 +0530 Add GitHub Actions workflow for deployment Diffstat:
| A | .github/workflows/main.yml | | | 21 | +++++++++++++++++++++ |
1 file changed, 21 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -0,0 +1,21 @@ +name: Deploy +on: + workflow_dispatch: + push: + branches: + - main +jobs: + publish: + name: Publish + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v1 + with: + dotnet-version: 7.0.x + - uses: retypeapp/action-build@latest + - uses: retypeapp/action-github-pages@latest + with: + update-branch: true