Create build.yaml

This commit is contained in:
Jarno Rankinen 2024-06-10 15:45:39 +03:00 committed by GitHub
parent f204d03f9e
commit ca04fdd5f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 39 additions and 0 deletions

39
.github/workflows/build.yaml vendored Normal file
View File

@ -0,0 +1,39 @@
name: Daily build
# Controls when the workflow will run
on:
schedule:
- cron: "39 19 * * *"
push:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v5
name: Daily build
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
build-args: NEXTCLOUD_UPSTREAM_VERSION=${{ env.NEXTCLOUD_UPSTREAM_VERSION }}
tags: |
ghcr.io/0ranki/clamav-docker:latest