update proxy pool docker compose #79
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 & Push [VPN Worker] | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'proxy_pool/**' | |
# Global variables | |
env: | |
GITHUB_ACTOR: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Jobs | |
jobs: | |
# Continuous integration | |
Build_VPN_Worker: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
# Clone the repo | |
- name: Check Out Repo | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
# Login to GitHub Container Registry | |
- name: Registry Login | |
uses: docker/login-action@v3.0.0 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
logout: true | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./proxy_pool | |
platforms: linux/amd64 | |
tags: ghcr.io/${{ github.actor }}/tripadvisor-review-scraper/vpn_worker:latest | |
push: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |