Compare commits

...

8 commits

Author SHA1 Message Date
Matthew Macdonald-Wallace
f155ca5977
Merge f6f1fe9c9d into d7ffa33950 2024-10-18 00:25:34 +00:00
Matthew Macdonald-Wallace
f6f1fe9c9d
fix formatting issue
Co-authored-by: Adam Stachowicz <saibamenppl@gmail.com>
2022-05-12 09:51:52 +01:00
Matthew Macdonald-Wallace
69a28c5e60
Dockerfile has been moved, updating path 2021-10-13 13:50:55 +01:00
Matthew Macdonald-Wallace
0ed5453d04
Use correct case for Dockerfile 2021-10-13 13:50:04 +01:00
Matthew Macdonald-Wallace
cd5ff2c459
Update changes to use master rather than main 2021-10-13 13:47:08 +01:00
Matthew Macdonald-Wallace
2778fa583b
Merge branch 'louislam:master' into feature/auto_build_and_release 2021-10-13 13:45:17 +01:00
Matthew Macdonald-Wallace
f14e9df020 Update the container name to the correct value 2021-08-27 19:12:14 +01:00
Matthew Macdonald-Wallace
be9790cd76 Automatically build and publish to Github Container Registry 2021-08-13 08:45:33 +01:00

73
.github/workflows/container_build.yml vendored Normal file
View file

@ -0,0 +1,73 @@
# This is a basic workflow to help you get started with Actions
name: Build and deploy containers
# Controls when the action will run.
on:
push:
branches:
- 'master'
pull_request:
branches:
- master
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Check Out Repo
uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/louislam/uptime-kuma
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
type=raw,value=latest,enable=${{ endsWith(github.ref, github.event.repository.default_branch) }}
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: ./
file: ./docker/dockerfile
push: true
platforms: linux/amd64, linux/arm/v7, linux/arm/v6, linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}