Add periodic automatic re-build of latest published version #noissue
All checks were successful
/ build (push) Successful in 1m4s
All checks were successful
/ build (push) Successful in 1m4s
This commit is contained in:
parent
6e1e17cfa0
commit
7b87eefc9e
1 changed files with 36 additions and 0 deletions
36
.forgejo/workflows/release_rebuild.yaml
Normal file
36
.forgejo/workflows/release_rebuild.yaml
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 1 * *'
|
||||||
|
env:
|
||||||
|
FB_VERSION: 4.0.0
|
||||||
|
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:
|
||||||
|
build-args: FB_VERSION=${{ env.FB_VERSION }}
|
||||||
|
push: true
|
||||||
|
tags: varakh/filebin:latest,varakh/filebin:${{ env.FB_VERSION }}
|
||||||
|
|
Loading…
Reference in a new issue