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

Fix CI to point to correct branch name (#2) #1

Fix CI to point to correct branch name (#2)

Fix CI to point to correct branch name (#2) #1

Workflow file for this run

name: Main
on:
push:
branches: [main]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
buildkitd-flags: --debug
- name: Log in to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
run: |
docker buildx build --platform linux/amd64 -t ghcr.io/${{ github.repository_owner }}/alaz:main --push .