We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66bac77 commit 2cc2d60Copy full SHA for 2cc2d60
.github/workflows/master.yml
@@ -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
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
.releaserc
@@ -0,0 +1,7 @@
+{
+ "plugins": [
+ "@semantic-release/commit-analyzer",
+ "@semantic-release/release-notes-generator",
+ "@semantic-release/github"
+ ]
+}
0 commit comments