Skip to content

Commit 6e2a7ae

Browse files
authored
Merge pull request #9 from qmuntal/github-actions
Add release action
2 parents 07f4d3a + c13e901 commit 6e2a7ae

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/release.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
fetch-depth: '0'
13+
- name: Bump version and push tag
14+
uses: anothrNick/[email protected]
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
WITH_V: true
18+
DEFAULT_BUMP: patch

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<p align="center"><img width="650" src="./assets/stateless.svg" alt="Stateless logo. Fire gopher designed by https://www.deviantart.com/quasilyte"></p>
22

33
<p align="center">
4-
<a href="https://github.com/qmuntal/stateless/actions?query=workflow%3ATest"><img src="https://github.com/qmuntal/stateless/workflows/Test/badge.svg" alt="Build Status"></a>
4+
<a href="https://github.com/qmuntal/stateless/actions?query=workflow%3ACI"><img src="https://github.com/qmuntal/stateless/workflows/CI/badge.svg" alt="Build Status"></a>
55
<a href="https://coveralls.io/github/qmuntal/stateless"><img src="https://coveralls.io/repos/github/qmuntal/stateless/badge.svg" alt="Code Coverage"></a>
66
<a href="https://goreportcard.com/report/github.com/qmuntal/stateless"><img src="https://goreportcard.com/badge/github.com/qmuntal/stateless" alt="Go Report Card"></a>
77
<a href="https://pkg.go.dev/github.com/qmuntal/stateless?tab=doc"><img src="https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white" alt="go.dev"></a>

0 commit comments

Comments
 (0)