Skip to content

fmt

fmt #63

Workflow file for this run

name: Release
on:
push: { branches: [ main ] }
jobs:
release:
strategy:
matrix:
os: [ ubuntu-latest ]
toolchain: [ nightly ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Get Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build new
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: false
cache-from: type=gha
cache-to: type=gha,mode=max