Skip to content

fix: 还是使用Alpine, 放弃s390x #5

fix: 还是使用Alpine, 放弃s390x

fix: 还是使用Alpine, 放弃s390x #5

name: Docker Image Release CI
on:
push:
tags:
- '*'
env:
APP_NAME: qexo
DOCKERHUB_REPO: abudulin/qexo
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Generate App Version
run: echo APP_VERSION=`git describe --tags --always` >> $GITHUB_ENV
-
name: Build and push
uses: docker/build-push-action@v2
with:

Check failure on line 37 in .github/workflows/docker-image-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker-image-release.yml

Invalid workflow file

You have an error in your yaml syntax on line 37
context: .
platforms: |
linux/386
linux/amd64
linux/arm64
linux/ppc64le
# linux/s390x
linux/arm/v6
linux/arm/v7
push: true
build-args: |
APP_NAME=${{ env.APP_NAME }}
APP_VERSION=${{ env.APP_VERSION }}
tags: |
${{ env.DOCKERHUB_REPO }}:latest
${{ env.DOCKERHUB_REPO }}:${{ env.APP_VERSION }}