Merge branch 'AlekseySpiridonov-master-origin' #2
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
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 |