mirror of
https://github.com/WhatsApp/proxy.git
synced 2026-04-22 19:34:35 +00:00
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
name: Docker Build and PR for Main
|
|
|
|
# Run on every push to main + weekly, Sunday @ midnight
|
|
# to keep the image fresh
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
schedule:
|
|
- cron: "0 0 * * 0"
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Docker metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: facebook/whatsapp_proxy
|
|
tags: |
|
|
type=raw,value={{date 'YYYYMMDD'}}
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to dockerhub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: ./proxy
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
tags: |
|
|
${{ steps.meta.outputs.tags }}
|
|
facebook/whatsapp_proxy:latest
|