From a8695f4741928b04d475ab775b2de9c58dc6acf8 Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Thu, 13 Apr 2023 09:55:34 -0700 Subject: [PATCH] CI: Add GHA release workflow Issue: RELENG-45633 Change-Id: Id0ce3d3888047a11c3f674cf2c9ba8b06a64c690 Signed-off-by: Andrew Grimberg --- .github/workflows/release.yaml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..a51a452 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,41 @@ +--- +name: Release announcement + +# yamllint disable-line rule:truthy +on: push + +jobs: + publish: + if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Get tag + id: tag + uses: evops-actions/action-get-tag@1.0.1 + - name: Convert tag + run: >- + VER=$(echo "${{ steps.tag.outputs.tag }}" | tr . -) + echo "ANCHOR=${VER}" >> $GITHUB_ENV + - name: Notify mailing list + uses: dawidd6/action-send-mail@v3 + with: + server_address: ${{ vars.MAIL_SERVER }} + server_port: ${{ variables.MAIL_SERVER_PORT }} + secure: true + username: ${{ secrets.MAIL_USER }} + password: ${{ secrets.MAIL_PASSWORD }} + subject: common-packer ${{ steps.tag.outputs.tag }} released + to: lf-releng@lists.linuxfoundation.org + from: ${{ vars.MAIL_FROM }} + body: | + Hi Everyone, + + common-packer ${{ steps.tag.outputs.tag }} is released. Thanks to everyone who contributed + to this release. Release notes are avaiable online at: + + https://docs.releng.linuxfoundation.org/projects/common-packer/en/stable/release-notes.html#${{ env.ANCHOR }} + + Cheers, + LF Releng -- 2.16.6