Skip to content

Bump github.com/progrium/go-basher from 5.1.6+incompatible to 5.1.7+incompatible #14

Bump github.com/progrium/go-basher from 5.1.6+incompatible to 5.1.7+incompatible

Bump github.com/progrium/go-basher from 5.1.6+incompatible to 5.1.7+incompatible #14

Workflow file for this run

---
name: ci
on:
pull_request:
branches:
- '*'
push:
branches:
- 'master'
- 'release'
jobs:
ci:
name: ci
runs-on: ubuntu-18.04
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.17.3'
- run: make deps build
- run: make test
- name: upload packages
uses: actions/upload-artifact@v2
with:
name: build
path: build/**/*
- name: make release-in-docker
run: |
if [[ "${GITHUB_REF#refs/heads/}" == "release" ]]; then
make deps build release
fi