Merge pull request #61 from paulnagle/dep_updates #95
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: Push to https://bmltsearch.bmlt.app | |
on: [push] | |
jobs: | |
build: | |
name: Push to gh-pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Setup java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20.x | |
- name: Install Ionic | |
run: npm install -g @ionic/cli | |
- name: Install app dependencies | |
run: npm install | |
- name: Build Script for browser | |
run: ionic build | |
- name: Push to https://bmltsearch.bmlt.app | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./www | |
cname: bmltsearch.bmlt.app |