build with docker #19
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: branches actions | |
run-name: build with docker | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
linux-image-build: | |
runs-on: ubuntu-latest | |
#if: ${{ github.ref != 'refs/heads/master' || github.event_name != 'push' }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: build image | |
run: docker build -t gpac-ubuntu -f build/docker/ubuntu.Dockerfile . | |
wasm-image-build: | |
runs-on: ubuntu-latest | |
#if: ${{ github.ref != 'refs/heads/master' || github.event_name != 'push' }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: build image | |
run: docker build -t gpac-wasm -f build/docker/wasm.Dockerfile . |