diff options
| author | stonedDiscord <Tukz@gmx.de> | 2021-02-25 22:47:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-25 22:47:48 +0100 |
| commit | f0b68aa0a71f19d3abac783ddf5c1d435b11c71f (patch) | |
| tree | c05a7ba03396f314088fdd3c3a38d909658b643d /.github | |
| parent | 684a25dc091063b692174f4b59f10d831d999026 (diff) | |
deploy to gh pages
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/nodejs.yml | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index a1b0f1b..b37178b 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -7,24 +7,20 @@ jobs: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [12.x] - steps: - - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} + - name: Checkout + uses: actions/checkout@v1 + - name: Setup Node uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - name: npm install, build, and test run: | git submodule init git submodule update - npm update npm install npm ci - npm run build --if-present -# npm test - env: - CI: true + npm run build + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@4.0.0 + with: + branch: gh-pages # The branch the action should deploy to. + folder: webAO # The folder the action should deploy. |
