Fixed max length #445
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: gui build/publish | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 18.x ] | |
env: | |
working-directory: ./gui | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install deps | |
working-directory: ${{env.working-directory}} | |
run: npm ci | |
- name: Build GUI | |
working-directory: ${{env.working-directory}} | |
run: npm run build | |
- name: Store output | |
uses: actions/upload-artifact@v3 | |
with: | |
name: gui-dist | |
path: ${{env.working-directory}}/dist | |
retention-days: 1 | |
publish: | |
runs-on: ubuntu-latest | |
needs: build | |
if: ${{ github.ref == 'refs/heads/main' }} | |
env: | |
working-directory: ./gui | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download GUI dist data | |
uses: actions/download-artifact@v3 | |
with: | |
name: gui-dist | |
path: ${{env.working-directory}}/dist | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push GUI | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./gui | |
push: true | |
tags: warmans/rsk-search-gui:latest |