Skip to content

Revert "replace sha256 with crc32" #18

Revert "replace sha256 with crc32"

Revert "replace sha256 with crc32" #18

Workflow file for this run

name: docker-images
on:
push:
branches:
- main
tags:
- v[0-9]+.[0-9]+.[0-9]+
pull_request:
branches:
- main
jobs:
build-docker:
runs-on: ubuntu-latest
env:
DOCKER_BUILDKIT: 1
steps:
- uses: actions/checkout@v4
with:
# needed so we can properly determine versioning for building images/etc...
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
check-latest: true
# Required so that we fetch tags as well (https://github.com/actions/checkout/issues/448)
- name: Fetch tags
run: |
git fetch --tags
git tag -l -n1
- name: Run tests
run: make test