Skip to content
This repository has been archived by the owner on Apr 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from linuxserver-labs/actions-v6
Browse files Browse the repository at this point in the history
  • Loading branch information
thespad authored Apr 13, 2022
2 parents 8398379 + 86a9a79 commit c92a006
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/call-baseimage-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
call-workflow:
uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v5
uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v6
with:
repo_owner: ${{ github.repository_owner }}
app_name: "invoiceninja"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/call-build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ on:

jobs:
call-workflow:
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v5
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v6
with:
repo_owner: ${{ github.repository_owner }}
app_name: "invoiceninja"
release_type: "script"
target-arch: "64"
secrets:
scarf_token: ${{ secrets.SCARF_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/call-check-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
call-workflow:
uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v5
uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v6
with:
repo_owner: ${{ github.repository_owner }}
app_name: "invoiceninja"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ Find us at:
[![GitHub Stars](https://img.shields.io/github/stars/linuxserver-labs/docker-invoiceninja.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver-labs/docker-invoiceninja)
[![GitHub Release](https://img.shields.io/github/release/linuxserver-labs/docker-invoiceninja.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver-labs/docker-invoiceninja/releases)
[![GitHub Package Repository](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub%20Package&logo=github)](https://github.com/linuxserver-labs/docker-invoiceninja/packages)
[![ci](https://img.shields.io/github/workflow/status/linuxserver-labs/docker-invoiceninja/Check%20for%20update%20and%20release.svg?labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Check%20For%20Upstream%20Updates)](https://github.com/linuxserver-labs/docker-invoiceninja/actions/workflows/call-chck-and-release.yml)
[![ci](https://img.shields.io/github/workflow/status/linuxserver-labs/docker-invoiceninja/Check%20for%20base%20image%20updates.svg?labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Check%20For%20Baseimage%20Updates)](https://github.com/linuxserver-labs/docker-invoiceninja/actions/workflows/call-baseimage-update.yml)
[![ci](https://img.shields.io/github/workflow/status/linuxserver-labs/docker-invoiceninja/Build%20Image%20On%20Release.svg?labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Build%20Image)](https://github.com/linuxserver-labs/docker-invoiceninja/actions/workflows/call-build-image.yml)

[Invoiceninja](https://www.invoiceninja.org/) is an invoicing application that makes sending invoices and receiving payments simple and easy."

Expand Down
43 changes: 42 additions & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,51 @@ target "image-local" {
output = ["type=docker"]
}

target "image-all" {
target "amd64" {
inherits = ["image"]
dockerfile = "Dockerfile"
platforms = [
"linux/amd64"
]
}

target "arm64v8" {
inherits = ["image"]
dockerfile = "Dockerfile.aarch64"
platforms = [
"linux/arm64"
]
}

target "arm32v7" {
inherits = ["image"]
dockerfile = "Dockerfile.armhf"
platforms = [
"linux/arm/v7"
]
}

target "64" {
inherits = ["image"]
platforms = [
"linux/amd64",
"linux/arm64"
]
}

target "arm" {
inherits = ["image"]
platforms = [
"linux/arm64",
"linux/arm/v7"
]
}

target "all" {
inherits = ["image"]
platforms = [
"linux/amd64",
"linux/arm64",
"linux/arm/v7"
]
}

0 comments on commit c92a006

Please sign in to comment.