chore: bump base image library versions #149
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 and publish development images | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'tests/**' | |
# Required for Depot OIDC token authentication | |
permissions: | |
id-token: write | |
contents: read | |
env: | |
DEPOT_PROJECT_ID: ${{ secrets.DEPOT_PROJECT_ID }} | |
jobs: | |
publish: | |
name: Build and publish development images | |
runs-on: ubuntu-latest | |
steps: | |
# See https://stackoverflow.com/questions/70312490/github-actions-runner-environment-doesnt-build-for-arm-images | |
- name: Set up QEMU to run ARM images | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Depot | |
uses: depot/setup-action@v1 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and publish images | |
run: make publish-dev-images |