diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 3dff7e9..fc087d9 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -2,8 +2,9 @@ name: Deploy Production on: push: - tags: - - 'v*' + branches: + - main + - master workflow_dispatch: permissions: diff --git a/README.md b/README.md index d8d67ee..47d3588 100644 --- a/README.md +++ b/README.md @@ -63,14 +63,11 @@ The site uses GitHub Actions for CI/CD: | Branch/Tag | Deployment | Indexing | |------------|------------|----------| | `dev` | Automatic on push | Blocked (noindex) | -| `v*` tags | Automatic on tag | Allowed | +| `main` / `master` | Automatic on push | Allowed | ### Deploy to Production -```bash -git tag v1.0.0 -git push origin v1.0.0 -``` +Production deploys are triggered automatically when changes are pushed to `main` or `master`. ## License