Compare commits
11 Commits
e6144a8b99
...
v0.4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
36c3489c55 | ||
|
|
9213b3900f | ||
|
|
c227745639 | ||
|
|
d0fd783e5f | ||
|
|
4dc2220ed6 | ||
| 385dd54468 | |||
| 8f2f0db9da | |||
| 97342b3bab | |||
| be1bac4d9b | |||
| f7c499c964 | |||
| 02d81ce818 |
78
.github/workflows/docker-deploy.yaml
vendored
78
.github/workflows/docker-deploy.yaml
vendored
@@ -13,29 +13,26 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
steps:
|
||||||
contents: read
|
- name: Checkout
|
||||||
packages: write
|
uses: actions/checkout@v3
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
# Install the cosign tool except on PR
|
# Install the cosign tool except on PR
|
||||||
# https://github.com/sigstore/cosign-installer
|
# https://github.com/sigstore/cosign-installer
|
||||||
- name: Install cosign
|
# - name: Install cosign
|
||||||
if: github.event_name != 'pull_request'
|
# if: github.event_name != 'pull_request'
|
||||||
uses: sigstore/cosign-installer@f3c664df7af409cb4873aa5068053ba9d61a57b6 #v2.6.0
|
# uses: sigstore/cosign-installer@f3c664df7af409cb4873aa5068053ba9d61a57b6 #v2.6.0
|
||||||
with:
|
# with:
|
||||||
cosign-release: 'v1.13.1'
|
# cosign-release: 'v1.13.1'
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1
|
uses: docker/setup-qemu-action@v1
|
||||||
|
|
||||||
# Workaround: https://github.com/docker/build-push-action/issues/461
|
# Workaround: https://github.com/docker/build-push-action/issues/461
|
||||||
- name: Setup Docker buildx
|
- name: Setup Docker buildx
|
||||||
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
|
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
|
||||||
|
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
@@ -43,22 +40,27 @@ jobs:
|
|||||||
username: ${{ secrets.ACTION_USER }}
|
username: ${{ secrets.ACTION_USER }}
|
||||||
password: ${{ secrets.PASSWORD }}
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v4
|
uses: docker/metadata-action@v4
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
git.nicktrimborn.de/nick/tasmota-power-exporter
|
||||||
tags: |
|
tags: |
|
||||||
type=ref,event=branch
|
type=ref,event=branch
|
||||||
type=ref,event=pr
|
type=ref,event=pr
|
||||||
type=semver,pattern={{version}}
|
type=semver,pattern={{version}}
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
|
|
||||||
- name: Build and push
|
|
||||||
uses: docker/build-push-action@v4
|
- name: Build and push
|
||||||
with:
|
uses: docker/build-push-action@v4
|
||||||
context: .
|
with:
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
context: .
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
tags: |
|
||||||
|
git.nicktrimborn.de/nick/tasmota-power-exporter:latest
|
||||||
|
${{ steps.meta.outputs.tags }}
|
||||||
|
#tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
#tags: git.nicktrimborn.de/nick/tasmota-power-exporter/tasmota-power-exporter:latest
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
Reference in New Issue
Block a user