cc16271683
* chore(`workflows`): update docker build dependencies and support ghcr.io * chore(`workflows`): update docker/build-push-action to v5
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
name: Build edge Docker images
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
publish_to_docker_hub:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Create Docker Metadata
|
|
id: metadata
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: |
|
|
milesmcc/shynet
|
|
ghcr.io/milesmcc/shynet
|
|
tags:
|
|
type=edge
|
|
|
|
- name: Set swap space
|
|
uses: pierotofy/set-swap-space@master
|
|
with:
|
|
swap-size-gb: 5
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and push advanced image
|
|
id: docker_build
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: ${{ steps.metadata.outputs.tags }}
|
|
labels: ${{ steps.metadata.outputs.labels }}
|