Skip to content

Commit

Permalink
Merge branch 'release/v0.4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
EvgeniyStrigo committed Feb 18, 2021
2 parents 2bca8df + 74c52dd commit f4154b4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
16 changes: 9 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,32 @@ before_script: curl https://rclone.org/install.sh | sudo bash
jobs:
include:
- name: dev
if: "(branch = master) or (tag =~ ^v)"
if: "(branch = develop)"
script:
- set -e
- npm run lint
- npm run test
- npm run build
- rclone copy dist :s3://auth/form/dev/ --s3-access-key-id=$MINIO_S3_ACCESS_KEY --s3-secret-access-key=$MINIO_S3_SECRET_KEY --s3-endpoint=$MINIO_S3_HOST
- name: dev
if: "(branch = develop)"
#- rclone copy dist :s3://auth/form/develop/ --s3-access-key-id=$MINIO_S3_ACCESS_KEY --s3-secret-access-key=$MINIO_S3_SECRET_KEY --s3-endpoint=$MINIO_S3_HOST
- rclone copy dist :s3://cdn-auth-super-com/authform/dev/ --s3-access-key-id=$AWS_CDN_ACCESS_KEY_ID --s3-secret-access-key=$AWS_CDN_ACCESS_SECRET_KEY --s3-region=eu-west-1
- name: stg
if: "(branch =~ ^release)"
script:
- set -e
- npm run lint
- npm run test
- npm run build
- rclone copy dist :s3://auth/form/develop/ --s3-access-key-id=$MINIO_S3_ACCESS_KEY --s3-secret-access-key=$MINIO_S3_SECRET_KEY --s3-endpoint=$MINIO_S3_HOST
- rclone copy dist :s3://cdn-auth-super-com/authform/stage/ --s3-access-key-id=$AWS_CDN_ACCESS_KEY_ID --s3-secret-access-key=$AWS_CDN_ACCESS_SECRET_KEY --s3-region=eu-west-1
#- rclone copy dist :s3://auth/form/dev/ --s3-access-key-id=$MINIO_S3_ACCESS_KEY --s3-secret-access-key=$MINIO_S3_SECRET_KEY --s3-endpoint=$MINIO_S3_HOST
- name: release
if: "(tag =~ ^v)"
script:
- set -e
- npm run lint
- npm run test
- npm run build
- rclone copy dist :s3://auth/form/latest/ --s3-access-key-id=$MINIO_S3_ACCESS_KEY --s3-secret-access-key=$MINIO_S3_SECRET_KEY --s3-endpoint=$MINIO_S3_HOST
- rclone copy dist :s3://auth/form/$TRAVIS_TAG/ --s3-access-key-id=$MINIO_S3_ACCESS_KEY --s3-secret-access-key=$MINIO_S3_SECRET_KEY --s3-endpoint=$MINIO_S3_HOST
#- rclone copy dist :s3://auth/form/latest/ --s3-access-key-id=$MINIO_S3_ACCESS_KEY --s3-secret-access-key=$MINIO_S3_SECRET_KEY --s3-endpoint=$MINIO_S3_HOST
#- rclone copy dist :s3://auth/form/$TRAVIS_TAG/ --s3-access-key-id=$MINIO_S3_ACCESS_KEY --s3-secret-access-key=$MINIO_S3_SECRET_KEY --s3-endpoint=$MINIO_S3_HOST
- rclone copy dist :s3://cdn-auth-super-com/authform/latest/ --s3-access-key-id=$AWS_CDN_ACCESS_KEY_ID --s3-secret-access-key=$AWS_CDN_ACCESS_SECRET_KEY --s3-region=eu-west-1
- rclone copy dist :s3://cdn-auth-super-com/authform/$TRAVIS_TAG/ --s3-access-key-id=$AWS_CDN_ACCESS_KEY_ID --s3-secret-access-key=$AWS_CDN_ACCESS_SECRET_KEY --s3-region=eu-west-1
notifications:
Expand Down
3 changes: 1 addition & 2 deletions src/components/PaySuperRegisterForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ export default {
.info {
position: relative;
margin-top: 8px;
margin-bottom: 22px;
margin: 22px 0;
& > svg {
position: absolute;
Expand Down
5 changes: 1 addition & 4 deletions src/components/UiTextField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export default {
prop: 'value',
event: 'input',
},
props: {
additionalInfo: {
default: '',
Expand Down Expand Up @@ -74,7 +73,6 @@ export default {
this.inputValue = val;
},
},
methods: {
handleInput() {
const prevValue = this.value || '';
Expand All @@ -83,7 +81,6 @@ export default {
this.$emit('input', value);
}
},
togglePasswordInputType() {
this.innerType = this.innerType === 'text' ? 'password' : 'text';
},
Expand Down Expand Up @@ -228,7 +225,7 @@ $left-indent: 17px;
top: 0;
}
.error {
bottom: -2px;
top: 60px;
color: $error-input-color;
display: block;
font-size: $secondary-input-size;
Expand Down

0 comments on commit f4154b4

Please sign in to comment.