Build and publish image #204
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: Build and publish image | |
on: | |
release: | |
types: [published] | |
schedule: | |
- cron: '0 3 * * 1' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build and publish image job | |
steps: | |
- name: Checkout master | |
uses: actions/checkout@master | |
- name: Build and publish image | |
uses: ilteoood/docker_buildx@master | |
with: | |
tag: latest,1.7.2 | |
imageName: ilteoood/docker-surfshark | |
platform: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6 | |
publish: true | |
dockerUser: ilteoood | |
dockerPassword: ${{ secrets.DOCKER_HUB_PASSWORD }} |