Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a5db469ac2 | |||
| a36b9a75f7 | |||
| 3a36b00b92 | |||
| ade0f19cae | |||
| d882c4166c | |||
| 1b74421e7e | |||
| 3d48465868 | |||
| a982172c39 | |||
| 25ed20032e | |||
| 10a5e1d6fb | |||
| 6a09b2855b | |||
| 91eec28708 | |||
| 90f5a16def | |||
| 7c9b777e64 | |||
| 0b728fad30 | |||
| c586229d98 | |||
| 8594359d52 | |||
| 7e06b6ee40 | |||
| 6ba8a26016 | |||
| 39708d18c0 | |||
| 5b6286ef14 | |||
| fde3bec39e | |||
| 8241d28a33 | |||
| b76b24277c | |||
| 58cf4dab0e | |||
| 4e52811a9a | |||
| 5c41159b09 | |||
| 059a3ce1db | |||
| babea68dd1 | |||
| 8213007523 | |||
| 2a3aa28dd1 |
@@ -20,7 +20,7 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5.5.1
|
||||||
with:
|
with:
|
||||||
# list of Docker images to use as base name for tags
|
# list of Docker images to use as base name for tags
|
||||||
images: |
|
images: |
|
||||||
@@ -30,27 +30,31 @@ jobs:
|
|||||||
type=schedule
|
type=schedule
|
||||||
type=ref,event=branch
|
type=ref,event=branch
|
||||||
type=ref,event=pr
|
type=ref,event=pr
|
||||||
type=semver,pattern={{version}}
|
|
||||||
type=semver,pattern={{raw}}
|
type=semver,pattern={{raw}}
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
type=semver,pattern={{version}}
|
||||||
type=semver,pattern={{major}}
|
|
||||||
type=sha
|
type=sha
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3.3.0
|
||||||
- name: Login to Harbor
|
- name: Login to Harbor
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3.1.0
|
||||||
with:
|
with:
|
||||||
registry: harbor.evanshome.io
|
registry: harbor.evanshome.io
|
||||||
username: ${{ secrets.HARBOR_USERNAME }}
|
username: ${{ secrets.HARBOR_USERNAME }}
|
||||||
password: ${{ secrets.HARBOR_PASSWORD }}
|
password: ${{ secrets.HARBOR_PASSWORD }}
|
||||||
- name: Build and push
|
|
||||||
uses: docker/build-push-action@v5
|
- name: echo new tag
|
||||||
with:
|
run: |
|
||||||
context: ./Docker/
|
echo "${{ steps.meta.outputs.tags }}"
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
# - name: Build and push
|
||||||
|
# uses: docker/build-push-action@v5.3.0
|
||||||
|
# with:
|
||||||
|
# context: ./Docker/
|
||||||
|
# push: ${{ github.event_name != 'pull_request' }}
|
||||||
|
# tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
# labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -23,3 +23,38 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.REPO_PUSH_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.REPO_PUSH_TOKEN }}
|
||||||
WITH_V: true
|
WITH_V: true
|
||||||
GIT_API_TAGGING: false
|
GIT_API_TAGGING: false
|
||||||
|
|
||||||
|
- name: Docker meta
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v5.5.1
|
||||||
|
with:
|
||||||
|
# list of Docker images to use as base name for tags
|
||||||
|
images: |
|
||||||
|
harbor.evanshome.io/library/py-eagle-mqtt
|
||||||
|
# generate Docker tags based on the following events/attributes
|
||||||
|
flavor: |
|
||||||
|
latest=true
|
||||||
|
tags: |
|
||||||
|
type=schedule
|
||||||
|
type=ref,event=branch
|
||||||
|
type=ref,event=pr
|
||||||
|
type=raw,value=${{ steps.taggerFinal.outputs.new_tag }}
|
||||||
|
type=semver,pattern={{raw}}
|
||||||
|
type=semver,pattern={{version}}
|
||||||
|
type=sha
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3.3.0
|
||||||
|
- name: Login to Harbor
|
||||||
|
uses: docker/login-action@v3.1.0
|
||||||
|
with:
|
||||||
|
registry: harbor.evanshome.io
|
||||||
|
username: ${{ secrets.HARBOR_USERNAME }}
|
||||||
|
password: ${{ secrets.HARBOR_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v5.3.0
|
||||||
|
with:
|
||||||
|
context: ./Docker/
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
@@ -11,14 +11,14 @@ stages:
|
|||||||
##- push_dockerhub
|
##- push_dockerhub
|
||||||
|
|
||||||
build:
|
build:
|
||||||
image: docker:24.0.7-dind
|
image: docker:26.0.0-dind
|
||||||
stage: build
|
stage: build
|
||||||
only:
|
only:
|
||||||
refs:
|
refs:
|
||||||
- tags
|
- tags
|
||||||
- branches
|
- branches
|
||||||
services:
|
services:
|
||||||
- name: docker:24.0.7-dind
|
- name: docker:26.0.0-dind
|
||||||
command: ["--tls=false"]
|
command: ["--tls=false"]
|
||||||
variables:
|
variables:
|
||||||
DOCKER_DRIVER: overlay2
|
DOCKER_DRIVER: overlay2
|
||||||
@@ -31,7 +31,7 @@ build:
|
|||||||
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
|
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
|
||||||
|
|
||||||
release:
|
release:
|
||||||
image: node:20.11.1-alpine3.18
|
image: node:20.12.1-alpine3.19
|
||||||
stage: release
|
stage: release
|
||||||
only:
|
only:
|
||||||
refs:
|
refs:
|
||||||
@@ -57,10 +57,10 @@ release:
|
|||||||
- CHANGELOG.md
|
- CHANGELOG.md
|
||||||
|
|
||||||
push local:
|
push local:
|
||||||
image: docker:24.0.7-dind
|
image: docker:26.0.0-dind
|
||||||
stage: push_local
|
stage: push_local
|
||||||
services:
|
services:
|
||||||
- name: docker:24.0.7-dind
|
- name: docker:26.0.0-dind
|
||||||
command: ["--tls=false"]
|
command: ["--tls=false"]
|
||||||
variables:
|
variables:
|
||||||
DOCKER_DRIVER: overlay2
|
DOCKER_DRIVER: overlay2
|
||||||
|
|||||||
Reference in New Issue
Block a user