Skip to content

Add New Port Mappings for Helm chart (#352) #168

Add New Port Mappings for Helm chart (#352)

Add New Port Mappings for Helm chart (#352) #168

Workflow file for this run

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