Skip to content

Merge pull request #67 from crumbhole/renovate/golang-1.x #88

Merge pull request #67 from crumbhole/renovate/golang-1.x

Merge pull request #67 from crumbhole/renovate/golang-1.x #88

Workflow file for this run

name: Build and test
on:
push:
branches: [ main ]
jobs:
gogitops:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: GoGitOps Step
id: gogitops
uses: beaujr/gogitops-action@v0.2
with:
github-actions-token: ${{secrets.GITHUB_TOKEN}}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get gomplate
uses: wei/wget@v1
with:
args: -O gomplate https://github.com/hairyhenderson/gomplate/releases/download/v3.11.1/gomplate_linux-amd64
- name: Set gomplate executable
run: sudo chmod +x gomplate && sudo mv gomplate /usr/local/bin/gomplate
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
push_to_registry:
name: Push Docker image to GitHub Packages
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- name: Push to GitHub Packages
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
platforms: linux/amd64, linux/arm64
tags: ghcr.io/crumbhole/kubecog-plugin:latest