Draft changelog #8
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: Build a tarball | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
workflow_dispatch: | |
inputs: | |
version: | |
description: The version to build the tarball for | |
required: true | |
jobs: | |
BuildTarball: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Determine version to build | |
id: get-version | |
run: | | |
if ${{ github.event_name == 'push' }}; then | |
version="$( echo '${{ github.ref }}' | sed 's/^v//' )" | |
else | |
version='${{ inputs.version }}' | |
fi | |
# assert it's a version number | |
set -x | |
[[ ${version} =~ ^[0-9]+.[0-9]+.[0-9]+$ ]] && echo "version=${version}" >> $GITHUB_OUTPUT | |
- name: Import GPG key | |
uses: crazy-max/ghaction-import-gpg@v5 | |
with: | |
gpg_private_key: ${{ secrets.MIR_BOT_GPG_PRIVATE_KEY }} | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
ref: v${{ steps.get-version.outputs.version }} | |
- name: Build the tarball | |
run: | | |
./tools/make_release_tarball --skip-checks | |
gpg --detach-sig --sign --output mir-${{ steps.get-version.outputs.version }}.tar.xz.asc mir-${{ steps.get-version.outputs.version }}.tar.xz | |
- name: Store the tarball and signature | |
uses: actions/upload-artifact@v3 | |
with: | |
name: mir-${{ steps.get-version.outputs.version }} | |
path: | | |
mir-${{ steps.get-version.outputs.version }}.tar.xz | |
mir-${{ steps.get-version.outputs.version }}.tar.xz.asc |