Merge pull request #582 from AndreKurait/MavenReleaseVersionUpdate #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release drafter | |
# Push events to every tag not containing "/" | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
draft-a-release: | |
name: Draft a release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: get_data | |
run: | | |
echo "approvers=$(cat .github/CODEOWNERS | grep @ | tr -d '*\n ' | sed 's/@/,/g' | sed 's/,//1')" >> $GITHUB_OUTPUT | |
echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
- uses: trstringer/manual-approval@v1 | |
with: | |
secret: ${{ github.TOKEN }} | |
approvers: ${{ steps.get_data.outputs.approvers }} | |
minimum-approvals: 2 | |
issue-title: 'Release opensearch-migrations version ${{ steps.get_data.outputs.version }}' | |
issue-body: "This release requires approval from at least two reviewers. Please approve or deny the release of opensearch-migrations **TAG**: ${{ github.ref_name }} **COMMIT**: ${{ github.sha }} **VERSION**: ${{ steps.get_data.outputs.version }}. The published TrafficCapture version will be 0.${{ steps.get_data.outputs.version }}." | |
exclude-workflow-initiator-as-approver: true | |
- name: Download Repo Tar | |
# Preface Traffic Capture version with 0. to signal interface immaturity | |
run: | | |
wget https://github.com/opensearch-project/opensearch-migrations/archive/refs/tags/${{ steps.get_data.outputs.version }}.tar.gz -O artifacts.tar.gz | |
(cd TrafficCapture && ./gradlew publishMavenJavaPublicationToMavenRepository -Dbuild.snapshot=false -Dbuild.version=0.${{ steps.get_data.outputs.version }} && tar -C build -cvf traffic-capture-artifacts.tar.gz repository) | |
- name: Draft a release | |
uses: softprops/action-gh-release@v2 | |
with: | |
draft: true | |
generate_release_notes: true | |
files: | | |
artifacts.tar.gz | |
TrafficCapture/traffic-capture-artifacts.tar.gz |