mirror of
https://github.com/ilteoood/docker-surfshark.git
synced 2026-01-02 10:57:21 +01:00
24 lines
737 B
YAML
24 lines
737 B
YAML
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.8.1
|
|
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 }}
|