mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-01-26 20:49:37 +05:00
25 lines
606 B
YAML
25 lines
606 B
YAML
name: Il2CppInspectorRedux Release
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build_artifacts:
|
|
name: Build artifacts
|
|
uses: ./.github/workflows/build.yml
|
|
make_release:
|
|
name: Create release
|
|
needs: build_artifacts
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Download artifacts
|
|
uses: actions/download-artifacts@v7
|
|
with:
|
|
path: ./artifacts/
|
|
- name: Make release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: ./artifacts/**/*
|
|
name: Il2CppInspectorRedux ${{ github.ref_name }}
|
|
generate_release_notes: false |