Skip to content

Add caching

Add caching #2

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
branches:
- main
env:
REGISTRY: ghcr.io
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set VERSION
run: |
if [ "${{ github.ref_type }}" = "tag" ]; then
VERSION="${GITHUB_REF_NAME#v}"
else
VERSION=$(git rev-parse --short $GITHUB_SHA)
fi
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Install Task
uses: arduino/setup-task@v2
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
run: |
task build IS_LOCAL=false VERSION="$VERSION" \
CACHE_FROM="type=gha,scope=wasi-builder" \
CACHE_TO="type=gha,scope=wasi-builder,mode=max"