Compare commits

...

6 Commits

Author SHA1 Message Date
90f5a16def Merge pull request 'chore(deps): update dependency docker/build-push-action to v5.3.0' (#60) from renovate/docker-build-push-action-5.x into master
Some checks are pending
ci / docker (push) Waiting to run
Reviewed-on: #60
2024-03-15 07:39:39 +00:00
0b728fad30 chore(deps): update dependency docker/build-push-action to v5.3.0
All checks were successful
ci / docker (push) Successful in 16s
Bump version / create_release_tag (pull_request) Successful in 50s
2024-03-15 07:37:43 +00:00
c586229d98 Merge pull request 'remove constraint on docker login' (#59) from erichardson-patch-1 into master
All checks were successful
ci / docker (push) Successful in 37s
Reviewed-on: #59
2024-03-07 08:36:50 +00:00
8594359d52 remove constraint on docker login
All checks were successful
ci / docker (push) Successful in 17s
Bump version / create_release_tag (pull_request) Successful in 37s
2024-03-07 08:36:44 +00:00
7e06b6ee40 Merge pull request 'add push' (#58) from erichardson-patch-1 into master
All checks were successful
ci / docker (push) Successful in 17s
Reviewed-on: #58
2024-03-07 08:34:29 +00:00
6ba8a26016 add push
Some checks failed
ci / docker (push) Successful in 19s
Bump version / create_release_tag (pull_request) Failing after 34s
2024-03-07 08:34:22 +00:00
2 changed files with 5 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ jobs:
# - name: Build and push # - name: Build and push
# uses: docker/build-push-action@v5 # uses: docker/build-push-action@v5.3.0
# with: # with:
# context: ./Docker/ # context: ./Docker/
# push: ${{ github.event_name != 'pull_request' }} # push: ${{ github.event_name != 'pull_request' }}

View File

@@ -32,6 +32,8 @@ jobs:
images: | images: |
harbor.evanshome.io/library/py-eagle-mqtt harbor.evanshome.io/library/py-eagle-mqtt
# generate Docker tags based on the following events/attributes # generate Docker tags based on the following events/attributes
flavor: |
latest=true
tags: | tags: |
type=schedule type=schedule
type=ref,event=branch type=ref,event=branch
@@ -43,7 +45,6 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Login to Harbor - name: Login to Harbor
if: github.event_name != 'pull_request'
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: harbor.evanshome.io registry: harbor.evanshome.io
@@ -51,9 +52,9 @@ jobs:
password: ${{ secrets.HARBOR_PASSWORD }} password: ${{ secrets.HARBOR_PASSWORD }}
- name: Build and push - name: Build and push
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5.3.0
with: with:
context: ./Docker/ context: ./Docker/
push: ${{ github.event_name != 'pull_request' }} push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}