forked from docker/compose
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (31 loc) · 879 Bytes
/
create-release.yaml
File metadata and controls
36 lines (31 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
## Reference: https://github.com/release-drafter/release-drafter
name: Create Release
on:
push:
branches:
- main
jobs:
create_release:
name: Create Release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up YQ
uses: frenck/action-setup-yq@v1
- name: Get release version from service.yaml
run: |
RELEASE_VERSION=$(yq eval '.version' service.yaml )
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
publish: true
version: ${{ env.RELEASE_VERSION }}
config-name: release-drafter.yaml