Skip to content

Commit fa9882a

Browse files
committed
Re-enable build and pull_request event
1 parent 46406b2 commit fa9882a

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/build_libzim_wasm.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
branches: [ master ]
1010
tags:
1111
- 'v*' # Tag push events matching v*, i.e. v1.0, v20.15.10
12-
# pull_request:
13-
# branches: [ master ]
12+
pull_request:
13+
branches: [ master ]
1414
workflow_dispatch:
1515
inputs:
1616
version:
@@ -29,16 +29,15 @@ env:
2929
jobs:
3030
build:
3131
name: Build and publish W/ASM artefacts
32-
if: github.even_name != 'release'
3332
runs-on: ubuntu-latest
3433
steps:
3534
- uses: actions/checkout@v3
3635
# Customizes the Emscripten docker container via the Dockerfile in this repo
37-
# - name: Build the Docker image
38-
# run: docker build -t "docker-emscripten-libzim:v3" ./docker
36+
- name: Build the Docker image
37+
run: docker build -t "docker-emscripten-libzim:v3" ./docker
3938
# Creates the ASM and WASM artefacts, and the JS wrappers, using the Makefile in this repo
40-
# - name: Compile the libzim WASM artefacts
41-
# run: docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) docker-emscripten-libzim:v3 make
39+
- name: Compile the libzim WASM artefacts
40+
run: docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) docker-emscripten-libzim:v3 make
4241
- name: List files in top-level directory
4342
run: ls -l
4443
# If we are not creating a release, archive the artefacts under this Action run

0 commit comments

Comments
 (0)