Added status API call #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy | |
permissions: | |
contents: write # Allow write permission to GITHUB_TOKEN to commit to deploy branch. | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Bundle and ship angular to gh-pages | |
uses: AhsanAyaz/[email protected] | |
with: | |
base_href: / | |
deploy_branch: gh-pages | |
angular_dist_build_folder: dist/turbine-status/browser | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} |