mirror of
https://github.com/Lissy93/dashy.git
synced 2025-12-07 00:54:16 +01:00
buildx integration
This commit is contained in:
parent
ec1dfce255
commit
37f7d685fe
1 changed files with 24 additions and 0 deletions
24
.github/workflows/docker-image.yml
vendored
Normal file
24
.github/workflows/docker-image.yml
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
name: ci-builx
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
buildx:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
-
|
||||||
|
name: Set up Docker Buildx
|
||||||
|
id: buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
-
|
||||||
|
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 }}"
|
||||||
Loading…
Reference in a new issue