Skip to content

Commit 0a463f4

Browse files
committed
Update GitHub Actions workflow to use self-hosted ARM64 runners and add deployment step to Coolify
1 parent 5ab9ce4 commit 0a463f4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Diff for: .github/workflows/docker-build.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010

1111
jobs:
1212
build-and-push:
13-
runs-on: ubuntu-latest
13+
runs-on: [ self-hosted, arm64 ]
1414
permissions:
1515
contents: read
1616
packages: write
@@ -44,4 +44,7 @@ jobs:
4444
context: .
4545
push: ${{ github.event_name != 'pull_request' }}
4646
tags: ${{ steps.meta.outputs.tags }}
47-
labels: ${{ steps.meta.outputs.labels }}
47+
labels: ${{ steps.meta.outputs.labels }}
48+
- name: Deploy to Coolify
49+
run: |
50+
curl --request GET '${{ secrets.COOLIFY_WEBHOOK }}' --header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}'

0 commit comments

Comments
 (0)