Skip to content

Update tools

Update tools #18

Workflow file for this run

name: Build
on: [push]
permissions:
id-token: write
packages: write
contents: read
jobs:
build:
runs-on: ubuntu-latest-m
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository_owner }}/cartesi-lambada-base-machine,enable=${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.ref, 'refs/tags/v') }}
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build docker image
id: docker_build
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64
tags: zippiehq/cartesi-lambada-base-machine:devel
push: false
load: true
- name: Push docker image
id: docker_push
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64
tags: ${{ steps.docker_meta.outputs.tags }}
push: true
load: false