Skip to content

deployment zytron

deployment zytron #1

Workflow file for this run

name: Building Images
on:
push:
branches:
- zytron
jobs:
build-safe-wallet-web:
name: Build safe-wallet-web
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login Github Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Metadata for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ghcr.io/zypher-game/safe-wallet-web
tags: |
type=raw,value={{branch}}-{{sha}}-{{date 'x'}}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}