Skip to content

Commit 2cc2d60

Browse files
committedOct 28, 2019
chore: run semantic release for release management
1 parent 66bac77 commit 2cc2d60

File tree

3 files changed

+28
-11
lines changed

3 files changed

+28
-11
lines changed
 

‎.github/workflows/master.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Master
2+
on:
3+
push:
4+
branches:
5+
- master
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@master
12+
with:
13+
ref: master
14+
- name: docker-build
15+
uses: actions/docker/cli@master
16+
with:
17+
args: build -t abatilo/actions-poetry .
18+
- name: Generate release
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
run: npx semantic-release

‎.github/workflows/push.yml

-11
This file was deleted.

‎.releaserc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"plugins": [
3+
"@semantic-release/commit-analyzer",
4+
"@semantic-release/release-notes-generator",
5+
"@semantic-release/github"
6+
]
7+
}

0 commit comments

Comments
 (0)
Please sign in to comment.