mirror of
https://github.com/shenxn/protonmail-bridge-docker.git
synced 2026-01-18 14:44:41 +01:00
94 lines
3.1 KiB
YAML
94 lines
3.1 KiB
YAML
name: Build docker image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- beta
|
|
- dev
|
|
- http-rest
|
|
pull_request:
|
|
|
|
env:
|
|
DOCKER_REPO: shenxn/protonmail-bridge
|
|
DOCKER_REPO_DEV: ghcr.io/shenxn/protonmail-bridge-dev
|
|
PLATFORMS: linux/amd64,linux/arm64/v8,linux/arm/v7
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
registry:
|
|
image: registry:2
|
|
ports:
|
|
- 5000:5000
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
- name: Set bridge version
|
|
id: version
|
|
run: |
|
|
echo "::set-output name=bridge_version::$(cat BRIDGE_VERSION)"
|
|
echo "::set-output name=version::$(cat VERSION)"
|
|
- name: Set repo
|
|
id: repo
|
|
run: |
|
|
if [[ $GITHUB_REF == "refs/heads/master" || $GITHUB_REF == "refs/heads/beta" ]]; then
|
|
echo "::set-output name=repo::${DOCKER_REPO}"
|
|
else
|
|
echo "::set-output name=repo::${DOCKER_REPO_DEV}"
|
|
fi
|
|
- name: Docker meta
|
|
id: docker_meta
|
|
uses: crazy-max/ghaction-docker-meta@v1
|
|
with:
|
|
images: ${{ steps.repo.outputs.repo }}
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
with:
|
|
driver-opts: network=host
|
|
- name: Build image without push to registry
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
platforms: ${{ env.PLATFORMS }}
|
|
build-args: BRIDGE_VERSION=${{ steps.version.outputs.bridge_version }}
|
|
push: true
|
|
tags: localhost:5000/protonmail-bridge:latest
|
|
- name: Scan image
|
|
id: scan
|
|
uses: anchore/scan-action@v2
|
|
with:
|
|
image: localhost:5000/protonmail-bridge:latest
|
|
fail-build: true
|
|
severity-cutoff: critical
|
|
acs-report-enable: true
|
|
- name: Upload Anchore scan SARIF report
|
|
uses: github/codeql-action/upload-sarif@v1
|
|
with:
|
|
sarif_file: ${{ steps.scan.outputs.sarif }}
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v1
|
|
if: ${{ github.event_name != 'pull_request' && steps.repo.outputs.repo == env.DOCKER_REPO }}
|
|
with:
|
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v1
|
|
if: ${{ github.event_name != 'pull_request' && steps.repo.outputs.repo == env.DOCKER_REPO_DEV }}
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.CR_PAT }}
|
|
- name: Push image
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
platforms: ${{ env.PLATFORMS }}
|
|
build-args: BRIDGE_VERSION=${{ steps.version.outputs.bridge_version }}
|
|
tags: |
|
|
${{ steps.repo.outputs.repo }}:beta
|
|
${{ steps.repo.outputs.repo }}:${{ steps.version.outputs.version }}
|
|
labels: ${{ steps.docker_meta.outputs.labels }}
|
|
push: ${{ github.event_name != 'pull_request' }}
|