Compare commits

...

2 Commits
0.0.1 ... 0.0.2

Author SHA1 Message Date
ducoterra
fd42b38c23 all focus on button 2020-04-24 20:50:23 -04:00
ducoterra
b8faf538be don't do anything unless tag 2020-04-24 20:46:03 -04:00
2 changed files with 6 additions and 1 deletions

View File

@@ -20,6 +20,9 @@ build:
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
test:
only:
variables:
- $CI_COMMIT_TAG
stage: test
image:
name: $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG

View File

@@ -32,4 +32,6 @@ button.addEventListener("click", event => {
.then((data) => {
count.innerText = data.pressed;
});
})
});
button.focus();