feat: build increase cache & transmission canceled the v3 version build #7
Workflow file for this run
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: Test image | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ${{ secrets.DOCKER_USERNAME }}/bgmi-all-in-one | |
- | |
name: Set Up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- | |
name: Set Up Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: BGmi | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: Dockerfile | |
platforms: | | |
linux/amd64 | |
push: false | |
tags: | | |
${{ secrets.DOCKER_USERNAME }}/bgmi-all-in-one:test | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha, scope=${{ github.workflow }} | |
cache-to: type=gha, scope=${{ github.workflow }} |