-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add automated build + warning in README
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 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,21 @@ | ||
name: Automated Build | ||
|
||
on: | ||
# workflow_dispatch is optional. | ||
# It lets you trigger the workflow manually from GitHub's web UI. | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
# Or, to build on tag pushes : | ||
#tags: | ||
# - '*' | ||
|
||
jobs: | ||
automated-build: | ||
uses: jpetazzo/workflows/.github/workflows/automated-build.yaml@main | ||
secrets: | ||
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
with: | ||
#DOCKER_HUB_USERNAME: myuser | ||
PLATFORMS: linux/amd64,linux/arm64 |
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