[TMP] Run release workflow to see make dist output #22
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 | |
on: | |
push: | |
branches: | |
- test-release | |
tags: | |
- v*.*.* | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ghrelase: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure | |
run: | | |
echo "VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV | |
echo "${GITHUB_REF#refs/*/v}" > .tarball-version | |
./bootstrap.sh | |
./configure --without-{bash,fish,zsh}-completion-dir | |
- name: Build source package | |
run: | | |
make dist | |
# - name: Publish Release | |
# uses: softprops/action-gh-release@v2 | |
# with: | |
# files: | | |
# git-warp-time-${{ env.VERSION }}.zip | |
# git-warp-time-${{ env.VERSION }}.tar.zst | |
# git-warp-time-${{ env.VERSION }}.sha256.txt |