chore(renovate): Update module github.com/spf13/cobra to v1.8.1 #220
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
args: --timeout 5m | |
build-export: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
uses: docker/build-push-action@v3 | |
with: | |
file: ./Dockerfile | |
platforms: linux/amd64 | |
push: false | |
tags: squarefactory/submer-pod-exporter:latest | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get the oci compatible version | |
if: startsWith(github.ref, 'refs/tags/') | |
id: get_version | |
run: | | |
OCI_VERSION=$(echo ${GITHUB_REF#refs/*/} | sed 's/+/-/g') | |
echo ::set-output name=VERSION::${OCI_VERSION} | |
- name: Build and export | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: docker/build-push-action@v3 | |
with: | |
file: ./Dockerfile | |
platforms: linux/amd64 | |
push: true | |
tags: | | |
ghcr.io/squarefactory/submer-pod-exporter:latest | |
ghcr.io/squarefactory/submer-pod-exporter:${{ steps.get_version.outputs.VERSION }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |