lasthourcloud/.github/workflows/github-actions.yml

37 lines
940 B
YAML
Raw Normal View History

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