Skip to content

RELEASE: v.0.10.0 (#272) #38

RELEASE: v.0.10.0 (#272)

RELEASE: v.0.10.0 (#272) #38

Workflow file for this run

name: New Release
on:
push:
tags:
- "v*.*.*"
workflow_dispatch:
jobs:
call-build_exe:
uses: ./.github/workflows/build_exe.yml
secrets: inherit
with:
is_release: true
release:
needs: call-build_exe
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Create Release
uses: softprops/action-gh-release@v2
if: github.ref_type == 'tag'
with:
files: |
artifacts/**/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}