Add SHA256 checksums in release-cmake.yml #7
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 | |
on: | |
push: | |
tags: | |
- boost-* | |
jobs: | |
release-posix-cmake: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ github.ref_name }} | |
submodules: true | |
- name: Cleanup | |
shell: bash | |
run: | | |
find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} + | |
- name: Create archives | |
run: | | |
tar -czf ${{ github.ref_name }}-cmake.tar.gz ${{ github.ref_name }} | |
sha256sum ${{ github.ref_name }}-cmake.tar.gz > ${{ github.ref_name }}-cmake.tar.gz.txt | |
tar -cJf ${{ github.ref_name }}-cmake.tar.xz ${{ github.ref_name }} | |
sha256sum ${{ github.ref_name }}-cmake.tar.xz > ${{ github.ref_name }}-cmake.tar.xz.txt | |
- uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
${{ github.ref_name }}-cmake.tar.gz | |
${{ github.ref_name }}-cmake.tar.gz.txt | |
${{ github.ref_name }}-cmake.tar.xz | |
${{ github.ref_name }}-cmake.tar.xz.txt | |
release-windows-cmake: | |
runs-on: windows-latest | |
needs: release-posix-cmake | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ github.ref_name }} | |
submodules: true | |
- name: Cleanup | |
shell: bash | |
run: | | |
find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} + | |
- name: Create archives | |
shell: cmd | |
run: | | |
7z a ${{ github.ref_name }}-cmake.zip ${{ github.ref_name }} | |
sha256sum ${{ github.ref_name }}-cmake.zip > ${{ github.ref_name }}-cmake.zip.txt | |
7z a ${{ github.ref_name }}-cmake.7z ${{ github.ref_name }} | |
sha256sum ${{ github.ref_name }}-cmake.7z > ${{ github.ref_name }}-cmake.7z.txt | |
- uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
${{ github.ref_name }}-cmake.zip | |
${{ github.ref_name }}-cmake.zip.txt | |
${{ github.ref_name }}-cmake.7z | |
${{ github.ref_name }}-cmake.7z.txt | |
release-posix-b2-nodocs: | |
runs-on: ubuntu-latest | |
needs: release-windows-cmake | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ github.ref_name }} | |
submodules: true | |
- name: Cleanup | |
shell: bash | |
run: | | |
find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} + | |
- name: Move headers | |
shell: bash | |
run: | | |
cd ${{ github.ref_name }} | |
cp -r libs/*/include/boost libs/numeric/*/include/boost . | |
rm -rf libs/*/include libs/numeric/*/include | |
rm -f CMakeLists.txt | |
- name: Create archives | |
run: | | |
tar -czf ${{ github.ref_name }}-b2-nodocs.tar.gz ${{ github.ref_name }} | |
sha256sum ${{ github.ref_name }}-b2-nodocs.tar.gz > ${{ github.ref_name }}-b2-nodocs.tar.gz.txt | |
tar -cJf ${{ github.ref_name }}-b2-nodocs.tar.xz ${{ github.ref_name }} | |
sha256sum ${{ github.ref_name }}-b2-nodocs.tar.xz > ${{ github.ref_name }}-b2-nodocs.tar.xz.txt | |
- uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
${{ github.ref_name }}-b2-nodocs.tar.gz | |
${{ github.ref_name }}-b2-nodocs.tar.gz.txt | |
${{ github.ref_name }}-b2-nodocs.tar.xz | |
${{ github.ref_name }}-b2-nodocs.tar.xz.txt | |
release-windows-b2-nodocs: | |
runs-on: windows-latest | |
needs: release-posix-b2-nodocs | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ github.ref_name }} | |
submodules: true | |
- name: Cleanup | |
shell: bash | |
run: | | |
find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} + | |
- name: Move headers | |
shell: bash | |
run: | | |
cd ${{ github.ref_name }} | |
cp -r libs/*/include/boost libs/numeric/*/include/boost . | |
rm -rf libs/*/include libs/numeric/*/include | |
rm -f CMakeLists.txt | |
- name: Create archives | |
shell: cmd | |
run: | | |
7z a ${{ github.ref_name }}-b2-nodocs.zip ${{ github.ref_name }} | |
sha256sum ${{ github.ref_name }}-b2-nodocs.zip > ${{ github.ref_name }}-b2-nodocs.zip.txt | |
7z a ${{ github.ref_name }}-b2-nodocs.7z ${{ github.ref_name }} | |
sha256sum ${{ github.ref_name }}-b2-nodocs.7z > ${{ github.ref_name }}-b2-nodocs.7z.txt | |
- uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
${{ github.ref_name }}-b2-nodocs.zip | |
${{ github.ref_name }}-b2-nodocs.zip.txt | |
${{ github.ref_name }}-b2-nodocs.7z | |
${{ github.ref_name }}-b2-nodocs.7z.txt |