Skip to content

Commit

Permalink
ci: only build amd64 image
Browse files Browse the repository at this point in the history
  • Loading branch information
wuhan005 committed Aug 10, 2024
1 parent d3e6a7a commit b6b6e81
Showing 1 changed file with 41 additions and 3 deletions.
44 changes: 41 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
- master

jobs:
build-arm:
runs-on: raspberrypi
build-amd64:
runs-on: ubuntu-latest
permissions:
actions: write
contents: read
Expand Down Expand Up @@ -36,9 +36,47 @@ jobs:
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/arm/v7
platforms: linux/amd64
push: true
build-args: |
GITHUB_SHA=${{ github.sha }}
tags: |
ghcr.io/nekowheel/nekobox:${{ env.IMAGE_TAG }}
# build-arm:
# runs-on: raspberrypi
# permissions:
# actions: write
# contents: read
# packages: write
# steps:
# - name: Compute image tag name
# run: echo "IMAGE_TAG=$(echo $GITHUB_REF_NAME)" >> $GITHUB_ENV
# - name: Checkout code
# uses: actions/checkout@v3
# - name: Set up Docker Buildx
# id: buildx
# uses: docker/setup-buildx-action@v2
# - name: Inspect builder
# run: |
# echo "Name: ${{ steps.buildx.outputs.name }}"
# echo "Endpoint: ${{ steps.buildx.outputs.endpoint }}"
# echo "Status: ${{ steps.buildx.outputs.status }}"
# echo "Flags: ${{ steps.buildx.outputs.flags }}"
# echo "Platforms: ${{ steps.buildx.outputs.platforms }}"
# - name: Login to GitHub Container registry
# uses: docker/login-action@v2
# with:
# registry: ghcr.io
# username: ${{ github.repository_owner }}
# password: ${{ secrets.GITHUB_TOKEN }}
# - name: Build and push images
# uses: docker/build-push-action@v4
# with:
# context: .
# platforms: linux/arm/v7
# push: true
# build-args: |
# GITHUB_SHA=${{ github.sha }}
# tags: |
# ghcr.io/nekowheel/nekobox:${{ env.IMAGE_TAG }}

0 comments on commit b6b6e81

Please sign in to comment.