We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b0d151 commit 1705baaCopy full SHA for 1705baa
.circleci/config.yml
@@ -90,6 +90,15 @@ jobs:
90
source emsdk_env.sh
91
python scripts/test.py
92
93
+ build-docker-image:
94
+ machine: true
95
+ steps:
96
+ - checkout
97
+ - run: cd docker && make version=${CIRCLE_TAG}-upstream
98
+ - run: |
99
+ docker login -u "$DOCKER_USER" -p "$DOCKER_PASS"
100
+ docker push emscripten/emsdk:${CIRCLE_TAG}-upstream
101
+
102
workflows:
103
flake8:
104
jobs:
@@ -103,3 +112,11 @@ workflows:
112
test-windows:
113
105
114
- test-windows
115
116
+ jobs:
117
+ - build-docker-image:
118
+ filters:
119
+ branches:
120
+ ignore: /.*/
121
+ tags:
122
+ only: /.*/
0 commit comments