From b5c66826d6d65df1a8d6b194e411893115e39289 Mon Sep 17 00:00:00 2001 From: Hemant Singh Yadav <98798073+hemant10yadav@users.noreply.github.com> Date: Tue, 31 Dec 2024 09:32:29 +0530 Subject: [PATCH] Create deploy.yaml --- .github/workflows/deploy.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/deploy.yaml diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 0000000..4471a80 --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,16 @@ +on: + push: + branches: + - "main" # change to the branch you wish to deploy from + +permissions: + contents: read + pages: write + id-token: write + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - id: build-publish + uses: bitovi/github-actions-angular-to-github-pages@v1.0.0