We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35677e4 commit 4438c6aCopy full SHA for 4438c6a
1 file changed
.github/workflows/release.yaml
@@ -8,14 +8,12 @@ on:
8
required: true
9
10
jobs:
11
- release-manager:
+ release:
12
runs-on: ubuntu-latest
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v2
16
17
-
18
19
- name: Set up Docker Buildk
20
uses: docker/setup-buildx-action@v1
21
with:
@@ -36,3 +34,12 @@ jobs:
36
34
push: true
37
35
tags: "registry.scality.com/bert-e/bert-e:${{ github.event.inputs.tag }}"
38
+ - name: Create Release
+ uses: softprops/action-gh-release@v1
39
+ env:
40
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
+ with:
42
+ name: Release ${{ github.event.inputs.tag }}
43
+ tag_name: ${{ github.event.inputs.tag }}
44
+ generate_release_notes: true
45
+ target_commitish: ${{ github.sha }}
0 commit comments