You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
708 B
28 lines
708 B
name: javascript-packages |
|
on: |
|
push: |
|
paths: |
|
- build/javascript/package.json |
|
|
|
jobs: |
|
run: |
|
name: npm run build |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Checkout repo |
|
uses: actions/checkout@v2 |
|
|
|
- name: Install dependencies |
|
run: | |
|
cd build/javascript |
|
npm run build |
|
|
|
- name: Commit changes |
|
uses: EndBug/add-and-commit@v5 |
|
with: |
|
author_name: Owncast |
|
author_email: owncast@owncast.online |
|
message: "Commit updated Javascript packages" |
|
add: "build/javascript/package* webroot/js/web_modules" |
|
env: |
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|