Skip to content

feat: update api.yml #4

feat: update api.yml

feat: update api.yml #4

Workflow file for this run

name: Build api

Check failure on line 1 in .github/workflows/api.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/api.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: combine
on:
push:
branches:
- "main"
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
name: Build binary and push (api)
runs-on: ubuntu-22.04
strategy:
matrix:
platform: [linux/amd64, linux/arm64]
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup environment
run: |
echo "SHORT_COMMIT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
echo "BRANCH_NAME=$(git branch --show-current)" >> $GITHUB_ENV
- name: Build binary
run: cargo build --release
- name: Copy binary
run: mv target/release/api api/api
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to repository
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ env.RUNNER_ARCH }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
platforms: linux/arm64
context: apps/api
file: apps/api/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
combine:
name: Combine docker manifests
runs-on: ubuntu-22.04
steps: