Fix tests for discord.js 14.16 [skip build] #484
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 Docker image | |
on: | |
push: | |
branches: ["master"] # Publish as Docker "latest" | |
tags: ["*"] | |
pull_request: | |
# Only rebuild Docker images if a PR affects it specifically to avoid | |
# redundant work since the main workflow already deals with testing builds | |
paths: | |
- Dockerfile | |
- .github/workflows/docker.yml | |
jobs: | |
lint-dockerfile: | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hadolint/hadolint-action@v3.1.0 | |
build: | |
runs-on: ubuntu-latest | |
if: >- | |
!( | |
contains(github.event.head_commit.message, '[skip build]') || | |
contains(github.event.head_commit.message, '[build skip]') | |
) | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: docker/setup-buildx-action@v3 | |
- uses: actions/cache@v4 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- uses: docker/metadata-action@v5 | |
id: meta | |
with: | |
images: ghcr.io/${{ github.repository }} | |
flavor: latest=${{ github.ref == 'refs/heads/master' }} | |
tags: | | |
type=ref,event=tag | |
type=sha,format=long | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: docker/build-push-action@v6 | |
with: | |
push: ${{ github.event_name == 'push' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: EMCEE_REVISION=${{ github.sha }} | |
pull: true | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max | |
sbom: ${{ github.event_name == 'push' }} |