build #1542
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 | |
on: | |
push: | |
branches: master | |
schedule: | |
# Run daily | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
build-arch: | |
- amd64 | |
- arm32v7 | |
- arm64v8 | |
env: | |
BUILD_ARCH: ${{ matrix.build-arch }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
run: | | |
sudo apt-get --yes update | |
sudo apt-get --yes --no-install-recommends install qemu-user-static | |
sudo ./prepare-qemu | |
- name: Build | |
run: ./build | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Push | |
run: ./push | |
create-manifest: | |
runs-on: ubuntu-latest | |
needs: build | |
env: | |
DOCKER_CLI_EXPERIMENTAL: enabled | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Create manifest | |
run: ./create-manifest |