-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Docker Publish workflows for Edge and Release images
- Loading branch information
1 parent
c0c5600
commit 77f8b7f
Showing
2 changed files
with
24 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Docker Publish (Edge Image) | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'docs/**' | ||
schedule: | ||
- cron: '0 8 * * 1' | ||
|
||
jobs: | ||
build-edge: | ||
uses: ./.github/workflows/service_docker-build-and-publish.yml | ||
with: | ||
docker-tags: "serversideup/financial-freedom:edge" | ||
dockerfile: "./Dockerfile.php" | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters