mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
54 lines
1.6 KiB
YAML
54 lines
1.6 KiB
YAML
# todo: use https://github.com/jpribyl/action-docker-layer-caching
|
|
# todo: make this generic for all Rust images in this repo
|
|
# todo: don't use docker/build-push-action
|
|
# todo: run builds on pull request
|
|
|
|
name: Build and push Rust service Docker images
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'lib/libpk/**'
|
|
- 'services/api/**'
|
|
- 'services/gateway/**'
|
|
- 'services/avatars/**'
|
|
- '.github/workflows/rust.yml'
|
|
- 'ci/Dockerfile.rust'
|
|
- 'ci/rust-docker-target.sh'
|
|
- 'Cargo.toml'
|
|
- 'Cargo.lock'
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
packages: write
|
|
if: github.repository == 'PluralKit/PluralKit'
|
|
steps:
|
|
- uses: docker/login-action@v1
|
|
if: ${{ !env.ACT }}
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.CR_PAT }}
|
|
|
|
- uses: actions/checkout@v2
|
|
- uses: docker/setup-buildx-action@v1
|
|
|
|
# main docker build
|
|
- run: echo "BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
|
|
- uses: docker/build-push-action@v2
|
|
with:
|
|
# https://github.com/docker/build-push-action/issues/378
|
|
context: .
|
|
file: ci/Dockerfile.rust
|
|
push: false
|
|
cache-from: type=registry,ref=ghcr.io/pluralkit/docker-cache:rust
|
|
cache-to: type=registry,ref=ghcr.io/pluralkit/docker-cache:rust,mode=max
|
|
outputs: .docker-bin
|
|
|
|
# add more binaries here
|
|
- run: |
|
|
tag=${{ github.sha }} \
|
|
branch=${{ env.BRANCH_NAME }} \
|
|
push=$([ "${{ github.repository }}" == "PluralKit/PluralKit" ] && echo true || echo false) \
|
|
ci/rust-docker-target.sh
|