Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shiv-source/workflows
github workflows
https://github.com/shiv-source/workflows
Last synced: 2 days ago
JSON representation
github workflows
- Host: GitHub
- URL: https://github.com/shiv-source/workflows
- Owner: shiv-source
- License: mit
- Created: 2023-10-25T21:40:25.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-26T04:32:37.000Z (about 1 year ago)
- Last Synced: 2023-10-26T22:36:58.323Z (about 1 year ago)
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# workflows
### Deploy angular build to GitHub Pages with pnpm package manager and pnpm cache
```yml
name: Deploy Angular app with PNPM to GitHub Pageson:
push:
branches:
- "master"jobs:
deploy:
permissions:
contents: write
uses: shiv-source/workflows/.github/workflows/angular-pnpm-gh-pages.yml@master
with:
ANGULAR_BUILD_DIR: ./dist/my-angular-app/ # you can change this as per your folder name like ./dist/ or ./dist/project1/
ANGULAR_BUILD_COMMAND: pnpm build:prod # default value = pnpm build. Not a required input
```