-
Notifications
You must be signed in to change notification settings - Fork 20
45 lines (38 loc) · 1.57 KB
/
publication-accepted.yml
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
37
38
39
40
41
42
43
44
45
name: Create Release and Call Workflow on Issue Close
on:
issues:
types: [closed]
jobs:
create_release_and_tag:
if: contains(github.event.issue.labels.*.name, 'Build OK') && contains(github.event.issue.labels.*.name, 'publication-request')
runs-on: ubuntu-latest
steps:
# Checkout repository
- name: Checkout repository
uses: actions/checkout@v2
# Fetch release-candidate branch and read version from publication-request.json
- name: Get version from publication-request.json
run: |
git fetch origin release-candidate
git checkout release-candidate
VERSION=$(jq -r '.version' publication-request.json)
echo "VERSION=$VERSION" >> $GITHUB_ENV
# Capture the current branch and set it as an output
- name: Get current branch
id: get_branch
run: echo "::set-output name=BRANCH::$(git rev-parse --abbrev-ref HEAD)"
# Create a release and tag with the version
- name: Create release and tag
uses: actions/create-release@v1
with:
tag_name: "v${{ env.VERSION }}"
release_name: "v${{ env.VERSION }}"
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Trigger the remote reusable workflow and pass the current branch
- name: Trigger remote workflow
uses: WorldHealthOrganization/smart-html/.github/workflows/release.yml@main
with:
branch: ${{ steps.get_branch.outputs.BRANCH }} # Pass the current branch to the remote workflow