From 6fba32fb20f76b7607cf17b4ba847a8021659e0c Mon Sep 17 00:00:00 2001 From: "Christopher J. Morrone" Date: Mon, 24 Jan 2022 11:29:26 -0800 Subject: [PATCH] Introduce github action to build release tarball. --- .github/workflows/create-release.yaml | 49 +++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/create-release.yaml diff --git a/.github/workflows/create-release.yaml b/.github/workflows/create-release.yaml new file mode 100644 index 0000000..9b854a4 --- /dev/null +++ b/.github/workflows/create-release.yaml @@ -0,0 +1,49 @@ +name: Create Release + +on: + push: + tags: + - '*' + +jobs: + build: + name: Create Release + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v2 + # actions/checkout@v2 breaks annotated tags by converting them into + # lightweight tags, so we need to force fetch the tag again + # See: https://github.com/actions/checkout/issues/290 + - name: Repair tag + run: git fetch -f origin ${{ github.ref }}:${{ github.ref }} + #- name: Verify tag is annotated + # run: if test x$(git for-each-ref ${{ github.ref }} | awk '{print $2}') = xtag; then /bin/true; else echo "\"${{ github.ref }}\" does not look like an annotated tag!"; /bin/false; fi + - name: bootstrap + run: sh bootstrap + - name: configure + run: ./configure + - name: make dist + run: | + make dist + echo TARBALL_NAME=$(ls *.tar.gz | head -1) >> $GITHUB_ENV + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + draft: false + prerelease: false + - name: Upload Release Asset + id: upload-release-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a pload_url See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps + asset_path: ./${{ env.TARBALL_NAME }} + asset_name: ${{ env.TARBALL_NAME }} + asset_content_type: application/gzip