Add periodic automatic re-build of latest published version #noissue
All checks were successful
/ build (push) Successful in 21s
All checks were successful
/ build (push) Successful in 21s
This commit is contained in:
parent
fa71d9b779
commit
659eacfbb7
3 changed files with 70 additions and 38 deletions
|
@ -1,4 +1,4 @@
|
||||||
on: [ push ]
|
on: [push]
|
||||||
env:
|
env:
|
||||||
REVISION: ${{ github.sha }}
|
REVISION: ${{ github.sha }}
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -7,25 +7,25 @@ jobs:
|
||||||
container:
|
container:
|
||||||
image: alpine:3.18
|
image: alpine:3.18
|
||||||
steps:
|
steps:
|
||||||
- name: Prepare requirements
|
- name: Prepare requirements
|
||||||
run: |
|
run: |
|
||||||
apk add --no-cache nodejs npm git
|
apk add --no-cache nodejs npm git
|
||||||
apk add --no-cache docker docker-cli-buildx
|
apk add --no-cache docker docker-cli-buildx
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
name: Clone
|
name: Clone
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USER }}
|
username: ${{ secrets.DOCKERHUB_USER }}
|
||||||
password: ${{ secrets.DOCKERHUB_KEY }}
|
password: ${{ secrets.DOCKERHUB_KEY }}
|
||||||
|
|
||||||
- name: Build docker image
|
- name: Build docker image
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
push: false
|
push: false
|
||||||
tags: varakh/hetzner-storagebox-exporter:${{ github.sha }}
|
tags: varakh/hetzner-storagebox-exporter:${{ github.sha }}
|
||||||
|
|
|
@ -10,26 +10,25 @@ jobs:
|
||||||
container:
|
container:
|
||||||
image: alpine:3.18
|
image: alpine:3.18
|
||||||
steps:
|
steps:
|
||||||
- name: Prepare requirements
|
- name: Prepare requirements
|
||||||
run: |
|
run: |
|
||||||
apk add --no-cache nodejs npm git
|
apk add --no-cache nodejs npm git
|
||||||
apk add --no-cache docker docker-cli-buildx
|
apk add --no-cache docker docker-cli-buildx
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
name: Clone
|
name: Clone
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USER }}
|
username: ${{ secrets.DOCKERHUB_USER }}
|
||||||
password: ${{ secrets.DOCKERHUB_KEY }}
|
password: ${{ secrets.DOCKERHUB_KEY }}
|
||||||
|
|
||||||
- name: Build docker image
|
|
||||||
uses: docker/build-push-action@v4
|
|
||||||
with:
|
|
||||||
push: true
|
|
||||||
tags: varakh/hetzner-storagebox-exporter:latest
|
|
||||||
|
|
||||||
|
- name: Build docker image
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
tags: varakh/hetzner-storagebox-exporter:latest
|
||||||
|
|
33
.forgejo/workflows/release_rebuild.yaml
Normal file
33
.forgejo/workflows/release_rebuild.yaml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 1 * *"
|
||||||
|
env:
|
||||||
|
REVISION: ${{ github.sha }}
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: alpine:3.18
|
||||||
|
steps:
|
||||||
|
- name: Prepare requirements
|
||||||
|
run: |
|
||||||
|
apk add --no-cache nodejs npm git
|
||||||
|
apk add --no-cache docker docker-cli-buildx
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
name: Clone
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USER }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_KEY }}
|
||||||
|
|
||||||
|
- name: Build docker image
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
tags: varakh/hetzner-storagebox-exporter:latest
|
Loading…
Reference in a new issue