This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
build(deps-dev): Bump eslint-config-prettier from 8.10.0 to 9.0.0 in /packages/washboard #1254
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: Docker | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build_image: | |
name: Build Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
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: Docker metadata | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
wasmcloud/wash | |
wasmcloud.azurecr.io/wash | |
tags: | | |
type=semver,pattern={{version}} | |
type=sha | |
flavor: | | |
latest=auto | |
labels: | | |
org.opencontainers.image.title=wash | |
org.opencontainers.image.description=WAsmcloud SHell | |
org.opencontainers.image.vendor=wasmCloud | |
org.opencontainers.image.source=https://github.com/${{ github.repository }} | |
- name: Build | |
id: docker_build_builder | |
uses: docker/build-push-action@v4 | |
with: | |
file: "Dockerfile" | |
target: release-alpine | |
tags: | | |
wasmcloud/wash:alpine | |
labels: ${{ steps.meta.outputs.labels }} | |
push: false |