Bump version. #32
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
on: | |
push: | |
tags: | |
- "v*.*.*" | |
- test | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- name: Cache shards | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/shards | |
key: ${{ runner.os }}-shards-${{ hashFiles('shard.yml') }} | |
restore-keys: ${{ runner.os }}-shards- | |
- name: Download source | |
uses: actions/checkout@v4 | |
- name: Install Crystal | |
uses: crystal-lang/install-crystal@v1 | |
- name: Install SQLite | |
uses: ccorsi/[email protected] | |
- name: Install shards | |
run: shards check || shards install --without-development | |
- name: package information | |
run: | | |
echo "BINARY_NAME=bin/$(cat shard.yml |Select-String -Pattern 'targets:' -Context 1 |%{$_ -replace '> targets:',''}|%{$_ -replace '[\s:]*',''})" >> $Env:GITHUB_ENV | |
echo "PKG_ARCH=x86_64" >> $Env:GITHUB_ENV | |
echo "PLATFORM=pc-windows-msvc.zip" >> $Env:GITHUB_ENV | |
echo "BUILD_ARGS=" >> $Env:GITHUB_ENV | |
- name: set asset name | |
run: | | |
echo "ASSERT_NAME=${{env.BINARY_NAME}}-${{github.ref_name}}-${{env.PKG_ARCH}}-${{env.PLATFORM}}" >> $Env:GITHUB_ENV | |
- name: release binary | |
id: release | |
run: | | |
echo "ASSERT_NAME=${{env.ASSERT_NAME}}" >> $Env:GITHUB_OUTPUT | |
shards build --production --release --progress --no-debug -Dstrict_multi_assign -Dno_number_autocast ${{env.BUILD_ARGS}} | |
7z a ${{env.ASSERT_NAME}} ${{env.BINARY_NAME}}.exe LICENSE | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
${{steps.release.outputs.ASSERT_NAME}} |