Skip to content

Commit ae8f585

Browse files
authored
Merge pull request #6 from devatherock/dockerhub-readme
docs: Updated dockerhub readme in CI pipeline
2 parents a9f6663 + b823430 commit ae8f585

2 files changed

Lines changed: 26 additions & 1 deletion

File tree

.circleci/config.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,20 @@ jobs:
4343
docker push devatherock/minify-js:$TAG
4444
docker push devatherock/minify-js:latest
4545
46+
dockerhub_readme:
47+
machine:
48+
image: ubuntu-2204:2023.04.2
49+
steps:
50+
- checkout
51+
- run: |
52+
docker run -v $PWD:/workspace \
53+
-e DOCKERHUB_USERNAME \
54+
-e DOCKERHUB_PASSWORD \
55+
-e DOCKERHUB_REPOSITORY='devatherock/minify-js' \
56+
-e SHORT_DESCRIPTION='Github action/CI Plugin to minify html, javascript and css files' \
57+
-e README_FILEPATH='/workspace/README.md' \
58+
peterevans/dockerhub-description:3.4.1
59+
4660
functional_test:
4761
machine:
4862
image: ubuntu-2004:202010-01
@@ -97,17 +111,24 @@ workflows:
97111
filters:
98112
branches:
99113
only: master
100-
- functional_test:
114+
- dockerhub_readme:
101115
context:
102116
- docker-credentials
117+
- dockerhub-readme-credentials
103118
requires:
104119
- publish
120+
- functional_test:
121+
context:
122+
- docker-credentials
123+
requires:
124+
- dockerhub_readme
105125
- notify:
106126
context:
107127
- docker-credentials
108128
- slack-webhook
109129
requires:
110130
- functional_test
131+
111132
release:
112133
jobs:
113134
- publish_release:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [Unreleased]
4+
### Changed
5+
- Updated dockerhub readme in CI pipeline
6+
37
## [1.0.3] - 2021-10-27
48
### Added
59
- Functional tests to CI pipeline

0 commit comments

Comments
 (0)