Merge pull request #188 from LabSid-USP/fix/build-release-workflow #14
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 Release | |
on: | |
push: | |
branches: "!*" | |
tags: "v*" | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -el {0} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: env-ci.yml | |
init-shell: bash | |
cache-environment: true | |
post-cleanup: "all" | |
- name: Create Version File | |
run: | | |
echo "${{ github.ref_name }}" | sed -E 's/v(.*)-.*/\1/; s/$/.0/' > version.txt | |
create-version-file metadata.yml --outfile versionfile.txt | |
- name: Create Package (${{ matrix.os }}) | |
run: pyinstaller rubem.spec --noconfirm | |
- name: Test Package | |
run: | | |
./dist/rubem/rubem -h | |
- name: Zip files | |
run: | | |
7z a -tzip -mx=9 -r "./dist/rubem/rubem-${{ github.ref_name }}-${{ matrix.os }}-x86_64.zip" ./dist/rubem/* | |
- name: Test Zip | |
run: | | |
7z t "./dist/rubem-${{ github.ref_name }}-${{ matrix.os }}-x86_64.zip" | |
- name: Compute Hash | |
run: | | |
cd ./dist/ | |
sha512sum rubem-${{ github.ref_name }}-${{ matrix.os }}-x86_64.zip > rubem-${{ github.ref_name }}-${{ matrix.os }}-x86_64.zip.sha512 | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref_name }} | |
name: ${{ github.ref_name }} | |
files: | | |
./dist/rubem-${{ github.ref_name }}-${{ matrix.os }}-x86_64.zip | |
./dist/rubem-${{ github.ref_name }}-${{ matrix.os }}-x86_64.zip.sha512 | |
draft: false | |
prerelease: false |