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

42 lines
1.1 KiB
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:
2022-05-04 12:30:35 +00:00
release:
types: published
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-06 13:18:38 +00:00
with:
path: main
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:59:59 +00:00
-
2022-05-04 12:06:06 +00:00
name: Get current package version
uses: martinbeentjes/npm-get-version-action@v1.2.3
2022-05-04 12:08:24 +00:00
id: package-version
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 12:11:46 +00:00
platforms: linux/amd64,linux/arm64
2022-05-04 11:02:16 +00:00
push: true
2022-05-04 12:31:03 +00:00
tags: coollabsio/coolify:latest,coollabsio/coolify:${{steps.package-version.outputs.current-version}}
2022-05-06 13:10:28 +00:00
cache-from: type=registry,ref=coollabsio/coolify:buildcache
cache-to: type=registry,ref=coollabsio/coolify:buildcache,mode=max