Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a0ae1ab14e | ||
| 068dcdb5d6 | |||
| 1cf67d139b | |||
| 5e1b586f01 | |||
| e0da9b110e | |||
| 9d4a95ad6a | |||
| 385c1d88d8 | |||
| bcba93d333 | |||
| 8e6130d919 |
@@ -6,13 +6,17 @@
|
|||||||
stages:
|
stages:
|
||||||
#- test
|
#- test
|
||||||
- build
|
- build
|
||||||
#- push_local
|
|
||||||
- release
|
- release
|
||||||
#- push_dockerhub
|
- push_local
|
||||||
|
##- push_dockerhub
|
||||||
|
|
||||||
build:
|
build:
|
||||||
image: docker:24.0.7-dind
|
image: docker:24.0.7-dind
|
||||||
stage: build
|
stage: build
|
||||||
|
only:
|
||||||
|
refs:
|
||||||
|
- tags
|
||||||
|
- branches
|
||||||
services:
|
services:
|
||||||
- name: docker:24.0.7-dind
|
- name: docker:24.0.7-dind
|
||||||
command: ["--tls=false"]
|
command: ["--tls=false"]
|
||||||
@@ -51,3 +55,26 @@ release:
|
|||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- CHANGELOG.md
|
- CHANGELOG.md
|
||||||
|
|
||||||
|
push local:
|
||||||
|
image: docker:24.0.7-dind
|
||||||
|
stage: push_local
|
||||||
|
services:
|
||||||
|
- name: docker:24.0.7-dind
|
||||||
|
command: ["--tls=false"]
|
||||||
|
variables:
|
||||||
|
DOCKER_DRIVER: overlay2
|
||||||
|
DOCKER_HOST: tcp://docker:2375
|
||||||
|
DOCKER_TLS_CERTDIR: ""
|
||||||
|
GIT_STRATEGY: none
|
||||||
|
FF_GITLAB_REGISTRY_HELPER_IMAGE: 1
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
script:
|
||||||
|
- echo $CI_COMMIT_TAG
|
||||||
|
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
||||||
|
- docker pull $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
|
||||||
|
- docker tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA $CI_REGISTRY_IMAGE:latest
|
||||||
|
- docker push $CI_REGISTRY_IMAGE:latest
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,3 +1,16 @@
|
|||||||
|
## [1.7.10](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/compare/v1.7.9...v1.7.10) (2023-12-03)
|
||||||
|
|
||||||
|
|
||||||
|
### Build
|
||||||
|
|
||||||
|
* fix build pipeline order ([1cf67d1](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/commit/1cf67d139b8ce3954a42afeeef49262c72d9b0a5))
|
||||||
|
|
||||||
|
### CI
|
||||||
|
|
||||||
|
* add branches to refs for building ([e0da9b1](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/commit/e0da9b110e69fc4f18f6588d297589ca71a27c08))
|
||||||
|
* Add push latest tag on master ([8e6130d](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/commit/8e6130d9195c19933054d9a4efbeeb3d025b5301))
|
||||||
|
* fix ordering of stages ([385c1d8](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/commit/385c1d88d85e64591fd0d3814111a7e335ea45f8))
|
||||||
|
|
||||||
## [1.7.9](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/compare/v1.7.8...v1.7.9) (2023-12-03)
|
## [1.7.9](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/compare/v1.7.8...v1.7.9) (2023-12-03)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user