Skip to content

Commit

Permalink
Use actions to automatically deploy to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuri0 committed Aug 18, 2024
1 parent 1fdfdc7 commit 4196146
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build an Deploy
on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: All things angular
uses: AhsanAyaz/[email protected]
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
build_configuration: production
base_href: /daily-random-scheduler/
deploy_branch: gh-pages
angular_dist_build_folder: dist/browser

permissions:
contents: write

0 comments on commit 4196146

Please sign in to comment.