committed by
GitHub
1 changed files with 74 additions and 0 deletions
@ -0,0 +1,74 @@ |
|||||
|
# 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 }} |
Loading…
Reference in new issue