Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

fixup! Add zrzutbazy #2

fixup! Add zrzutbazy

fixup! Add zrzutbazy #2

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to ghcr
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ghcr.io/${{ github.repository }}:latest
platforms: linux/amd64