-
Notifications
You must be signed in to change notification settings - Fork 7
51 lines (44 loc) · 1.18 KB
/
ci_vpn_worker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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