commonjs #115
Workflow file for this run
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: C/C++ CI for Web | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Login to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build Compiler (Latest) | |
if: ${{ !contains(github.ref, 'tags/') }} | |
uses: docker/build-push-action@v2 | |
with: | |
push: ${{ contains(github.ref_name, 'master') }} | |
tags: nokotan/emscripten-compiler:latest | |
- name: Build Compiler (Tagged) | |
if: ${{ contains(github.ref, 'tags/') }} | |
uses: docker/build-push-action@v2 | |
with: | |
push: true | |
tags: nokotan/emscripten-compiler:${{ github.ref_name }} | |
- name: Run Node | |
working-directory: ./app | |
run: | | |
npm install | |
npm run build | |
- name: Build Compiler Server (Latest) | |
if: ${{ !contains(github.ref, 'tags/') }} | |
uses: docker/build-push-action@v2 | |
with: | |
push: true | |
context: ./app/ | |
tags: nokotan/emscripten-compiler-server:latest | |
- name: Build Compiler Server (Tagged) | |
if: ${{ !contains(github.ref, 'tags/') }} | |
uses: docker/build-push-action@v2 | |
with: | |
push: true | |
context: ./app/ | |
tags: nokotan/emscripten-compiler:${{ github.ref_name }} |