56bff45546
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
97 lines
3.1 KiB
YAML
97 lines
3.1 KiB
YAML
name: build-and-push-bskyweb-ghcr
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- Dockerfile
|
|
- Dockerfile.bskylink
|
|
- Dockerfile.bskyogcard
|
|
- Dockerfile.embedr
|
|
- .github/workflows/build-and-push-bskyweb-ghcr.yaml
|
|
push:
|
|
branches:
|
|
- main
|
|
- jake/bskyweb-additions
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
USERNAME: ${{ github.actor }}
|
|
PASSWORD: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# github.repository as <account>/<repo>
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
jobs:
|
|
verify-containers:
|
|
if: github.event_name == 'pull_request'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- image: bskyweb
|
|
file: Dockerfile
|
|
- image: bskylink
|
|
file: Dockerfile.bskylink
|
|
- image: bskyogcard
|
|
file: Dockerfile.bskyogcard
|
|
- image: embedr
|
|
file: Dockerfile.embedr
|
|
steps:
|
|
- name: ⬇️ Checkout repository
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
- name: 🔧 Setup Docker buildx
|
|
uses: docker/setup-buildx-action@37fe631027851001ddb9b187196cc803df7f5f0e # v4.3.0
|
|
- name: Build ${{ matrix.image }}
|
|
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
|
|
with:
|
|
context: .
|
|
file: ${{ matrix.file }}
|
|
platforms: linux/amd64
|
|
push: false
|
|
cache-from: type=gha,scope=${{ matrix.image }}
|
|
cache-to: type=gha,mode=max,scope=${{ matrix.image }}
|
|
|
|
bskyweb-container-ghcr:
|
|
if: github.event_name == 'push' && github.repository == 'bluesky-social/social-app'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
id-token: write
|
|
|
|
steps:
|
|
- name: ⬇️ Checkout repository
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
|
|
- name: 🔧 Setup Docker buildx
|
|
uses: docker/setup-buildx-action@37fe631027851001ddb9b187196cc803df7f5f0e # v4.3.0
|
|
|
|
- name: 🔑 Log into registry ${{ env.REGISTRY }}
|
|
uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ env.USERNAME }}
|
|
password: ${{ env.PASSWORD }}
|
|
|
|
- name: 🏷️ Extract Docker metadata
|
|
id: meta
|
|
uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0
|
|
with:
|
|
images: |
|
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
tags: |
|
|
type=sha,enable=true,priority=100,prefix=bskyweb:,suffix=,format=long
|
|
|
|
- name: 🚀 Build and push Docker image
|
|
id: build-and-push
|
|
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
|
|
with:
|
|
context: .
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
file: ./Dockerfile
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|