Update "about" window (#56) #191
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: CI | |
on: [push] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. | |
with: | |
persist-credentials: false | |
- name: Install and Build | |
run: | | |
npm install | |
npm run-script test | |
npm run-script build | |
npm run-script test | |
- name: Build and publish Docker image | |
if: github.ref == 'refs/heads/main' | |
uses: elgohr/Publish-Docker-Github-Action@33a481be3e179353cb7793a92b57cf9a6c985860 # v4 | |
with: | |
name: gridsuite/gridXXX-app | |
username: gridsuiteci | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Broadcast update event | |
if: github.ref == 'refs/heads/main' | |
uses: gridsuite/broadcast-event@main | |
with: | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
event-type: gridXXX_app_updated |