Merge pull request #178 from LabSid-USP/feature/155-implement-start-d… #9
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: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: rubem-ci | |
environment-file: env-ci.yml | |
python-version: 3.9 | |
auto-activate-base: false | |
- name: Create Version File | |
run: | | |
Write-Output(("${{ github.ref_name }}" -replace 'v(.*)-.*', '$1') + '.0') > version.txt | |
create-version-file metadata.yml --outfile versionfile.txt | |
- name: Create Package | |
run: pyinstaller rubem.spec --noconfirm | |
- name: Test Package | |
run: | | |
./dist/rubem/rubem -h | |
- name: Zip files | |
run: | | |
Set-Location -Path .\dist\rubem | |
7z a -tzip -mx=9 -r "..\rubem-${{ github.ref_name }}-win-x86_64.zip" .\* | |
- name: Test Zip | |
run: | | |
7z t "dist/rubem-${{ github.ref_name }}-win-x86_64.zip" | |
- name: Compute Hash | |
run: | | |
$hash = Get-FileHash -Path dist/rubem-${{ github.ref_name }}-win-x86_64.zip -Algorithm SHA512 | |
echo $hash.Hash $([System.IO.Path]::GetFileName($hash.Path)) > dist/rubem-${{ github.ref_name }}-win-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 }}-win-x86_64.zip | |
./dist/rubem-${{ github.ref_name }}-win-x86_64.zip.sha512 | |
draft: false | |
prerelease: false |