From 0077d6bc2869f8d939476fa167d1a55f9e126da9 Mon Sep 17 00:00:00 2001 From: Andrew Rynhard Date: Sun, 29 Oct 2023 15:31:48 +0000 Subject: [PATCH] chore: add GitHub action --- .github/workflows/ci.yaml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..655a6d3 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,39 @@ +name: ci + +on: + push: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v4 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + with: + platforms: linux/amd64,linux/arm64 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '^1.13.1' + - + name: Build + run: make build + + - + name: Login to ghcr.io + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{github.actor}} + password: ${{secrets.GITHUB_TOKEN}} + - + name: Push container + run: docker push ghcr.io/siderolabs/kube-scheduler:latest