|
@@ -26,70 +26,64 @@ jobs:
|
|
|
echo "TAG=${TAG}" >> $GITHUB_ENV
|
|
|
-
|
|
|
name: Checkout
|
|
|
- uses: actions/checkout@v2
|
|
|
+ uses: actions/checkout@v3
|
|
|
-
|
|
|
name: Set up QEMU
|
|
|
- uses: docker/setup-qemu-action@v1
|
|
|
+ uses: docker/setup-qemu-action@v2
|
|
|
-
|
|
|
name: Set up Docker Buildx
|
|
|
- uses: docker/setup-buildx-action@v1
|
|
|
+ uses: docker/setup-buildx-action@v2
|
|
|
-
|
|
|
name: Login to DockerHub
|
|
|
- uses: docker/login-action@v1
|
|
|
+ uses: docker/login-action@v2
|
|
|
with:
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
- -
|
|
|
- name: Build x86 and export to Docker
|
|
|
- uses: docker/build-push-action@v2
|
|
|
- with:
|
|
|
- context: .
|
|
|
- load: true
|
|
|
- platforms: linux/amd64
|
|
|
- tags: ${{ env.TAG }}
|
|
|
- build-args: version=${{ env.TAG }}
|
|
|
- -
|
|
|
- name: Test x86
|
|
|
- run: |
|
|
|
- docker run --rm ${{ env.TAG }}&
|
|
|
- sleep 10
|
|
|
- kill %1
|
|
|
-
|
|
|
- name: Build arm64 and export to Docker
|
|
|
- uses: docker/build-push-action@v2
|
|
|
+ name: Build and push
|
|
|
+ uses: docker/build-push-action@v3
|
|
|
with:
|
|
|
context: .
|
|
|
- load: true
|
|
|
- platforms: linux/arm64
|
|
|
- tags: ${{ env.TAG }}
|
|
|
+ platforms: linux/amd64, linux/arm64, linux/arm/v7
|
|
|
+ push: true
|
|
|
+ tags: ${{ github.repository }}:${{ env.TAG }}, ${{ github.repository }}:latest
|
|
|
build-args: version=${{ env.TAG }}
|
|
|
- -
|
|
|
- name: Test arm64
|
|
|
+
|
|
|
+ docker-ee:
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ steps:
|
|
|
+ -
|
|
|
+ name: Set tag
|
|
|
run: |
|
|
|
- docker run --rm ${{ env.TAG }}&
|
|
|
- sleep 10
|
|
|
- kill %1
|
|
|
- -
|
|
|
- name: Build armv7l and export to Docker
|
|
|
- uses: docker/build-push-action@v2
|
|
|
+ if [[ -n "${{ github.event.inputs.tag }}" ]]; then
|
|
|
+ TAG=${{ github.event.inputs.tag }}
|
|
|
+ elif [[ "${{ github.ref_name }}" == 'master' ]]; then
|
|
|
+ TAG="latest"
|
|
|
+ else
|
|
|
+ TAG="${{ github.ref_name }}"
|
|
|
+ fi
|
|
|
+ echo "TAG=${TAG}" >> $GITHUB_ENV
|
|
|
+ -
|
|
|
+ name: Checkout
|
|
|
+ uses: actions/checkout@v3
|
|
|
+ -
|
|
|
+ name: Set up QEMU
|
|
|
+ uses: docker/setup-qemu-action@v2
|
|
|
+ -
|
|
|
+ name: Set up Docker Buildx
|
|
|
+ uses: docker/setup-buildx-action@v2
|
|
|
+ -
|
|
|
+ name: Login to DockerHub
|
|
|
+ uses: docker/login-action@v2
|
|
|
with:
|
|
|
- context: .
|
|
|
- load: true
|
|
|
- platforms: linux/arm/v7
|
|
|
- tags: ${{ env.TAG }}
|
|
|
- build-args: version=${{ env.TAG }}
|
|
|
- -
|
|
|
- name: Test armv7l
|
|
|
- run: |
|
|
|
- docker run --rm ${{ env.TAG }}&
|
|
|
- sleep 10
|
|
|
- kill %1
|
|
|
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
-
|
|
|
name: Build and push
|
|
|
- uses: docker/build-push-action@v2
|
|
|
+ uses: docker/build-push-action@v3
|
|
|
with:
|
|
|
context: .
|
|
|
platforms: linux/amd64, linux/arm64, linux/arm/v7
|
|
|
push: true
|
|
|
- tags: ${{ github.repository }}:${{ env.TAG }}, ${{ github.repository }}:latest
|
|
|
- build-args: version=${{ env.TAG }}
|
|
|
+ tags: ${{ github.repository }}:${{ env.TAG }}-ee
|
|
|
+ build-args: version=${{ env.TAG }}, tags="-tags=ee"
|