Make Dependabot update GitHub actions #49
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: ghcr | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
pull_request: | |
env: | |
DOCKER_IMAGE: ghcr.io/anoadragon453/matrix-reminder-bot | |
jobs: | |
docker-build-python-versions-matrix: | |
strategy: | |
matrix: | |
version: ['3.8', '3.9', '3.10', '3.11'] | |
arch: ['linux/amd64', 'linux/arm64'] | |
fail-fast: false | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
- name: Docker build | |
uses: docker/build-push-action@v5 | |
id: dockerBuild | |
with: | |
push: false | |
context: . | |
file: ./docker/Dockerfile | |
platforms: ${{ matrix.arch }} | |
build-args: | | |
PYTHON_VERSION=${{ matrix.version }} | |
docker-build-push-ghcr: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
outputs: | |
docker-tag: ${{ steps.meta.outputs.version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate Docker metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.DOCKER_IMAGE }} | |
labels: | | |
org.opencontainers.image.title=Matrix Reminder Bot | |
org.opencontainers.image.description=A bot to remind you about stuff. Supports encrypted rooms. | |
tags: | | |
type=ref,event=tag,enable=true,priority=900 | |
type=raw,value=dev,enable={{is_default_branch}},priority=700 | |
type=ref,event=pr,enable=true,priority=600 | |
- name: Setup buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
- name: Login to ghcr.io | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker build and push | |
uses: docker/build-push-action@v5 | |
id: dockerBuild | |
with: | |
push: true | |
context: . | |
file: ./docker/Dockerfile | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64,linux/arm64 |