coolify/.github/workflows/github-actions.yml

37 lines
940 B
YAML
Raw Normal View History

2022-05-04 13:32:35 +02:00
name: release-coolify
2022-05-04 13:02:16 +02:00
on:
push:
branches:
2022-05-04 13:05:01 +02:00
- 'gh-actions'
2022-05-04 13:02:16 +02:00
jobs:
build:
2022-05-04 13:02:16 +02:00
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
2022-05-04 13:32:35 +02:00
-
2022-05-04 13:02:16 +02:00
name: Set up QEMU
uses: docker/setup-qemu-action@v1
2022-05-04 13:06:15 +02:00
-
2022-05-04 13:02:16 +02:00
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
2022-05-04 13:06:15 +02:00
-
2022-05-04 13:02:16 +02:00
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2022-05-04 13:06:15 +02:00
-
2022-05-04 13:02:16 +02:00
name: Build and push
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: coollabsio/coolify-test:latest
2022-05-04 13:32:35 +02:00
cache-from: type=registry,ref=coollabsio/coolify-test:buildcache
cache-to: type=registry,ref=coollabsio/coolify-test:buildcache,mode=max