Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a0ae1ab14e | ||
| 068dcdb5d6 | |||
| 1cf67d139b | |||
| 5e1b586f01 | |||
| e0da9b110e | |||
| 9d4a95ad6a | |||
| 385c1d88d8 | |||
| bcba93d333 | |||
| 8e6130d919 | |||
|
|
f918d64ea7 | ||
| 51f73368f1 | |||
| 6489f3d01a | |||
| 24f6984021 | |||
| dbef7acec2 |
@@ -6,15 +6,19 @@
|
||||
stages:
|
||||
#- test
|
||||
- build
|
||||
#- push_local
|
||||
- release
|
||||
#- push_dockerhub
|
||||
- push_local
|
||||
##- push_dockerhub
|
||||
|
||||
build:
|
||||
image: docker:24.0.5-dind
|
||||
image: docker:24.0.7-dind
|
||||
stage: build
|
||||
only:
|
||||
refs:
|
||||
- tags
|
||||
- branches
|
||||
services:
|
||||
- name: docker:24.0.5-dind
|
||||
- name: docker:24.0.7-dind
|
||||
command: ["--tls=false"]
|
||||
variables:
|
||||
DOCKER_DRIVER: overlay2
|
||||
@@ -51,3 +55,26 @@ release:
|
||||
artifacts:
|
||||
paths:
|
||||
- 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
|
||||
|
||||
|
||||
|
||||
20
CHANGELOG.md
20
CHANGELOG.md
@@ -1,3 +1,23 @@
|
||||
## [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)
|
||||
|
||||
|
||||
### Build
|
||||
|
||||
* bump docker base to python:3.12-alpine ([6489f3d](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/commit/6489f3d01a71fba8e1a4ac35de2b0bffdf2529bd))
|
||||
|
||||
## [1.7.8](https://gitlab.evanshome.io/erichardson/py-eagle-mqtt/compare/v1.7.7...v1.7.8) (2023-12-03)
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM python:3.11-alpine
|
||||
FROM python:3.12-alpine
|
||||
LABEL maintainer="Evan Richardson (evanrich81[at]gmail.com)"
|
||||
|
||||
ARG BUILD_DATE
|
||||
|
||||
Reference in New Issue
Block a user