add: release_with_tag.yml #3
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: 🚀🏷️ Release with Tag | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
## ====================================================================================================== | |
upload_asset_for_windows: | |
name: 📦️ Upload Asset on macOS (iOS) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: setup dotnet | |
uses: actions/setup-dotnet@v4 | |
- name: testing | |
run: | | |
cd src/NF.Tool.UnityPackage.Console | |
dotnet publish -c Release -r win10-x64 -p:PublishSingleFile=true -p:PublishTrimmed=true -p:TrimUnusedDependencies=true -p:DebugType=None -p:DebugSymbols=false | |
- name: 📦️⏫ Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifact-windows | |
path: src/NF.Tool.UnityPackage.Console/bin/Release/net6.0/win10-x64/publish/NF.Tool.UnityPackage.Console.exe | |
if-no-files-found: error | |
retention-days: 1 | |
compression-level: 0 | |
## ====================================================================================================== | |
release: | |
needs: [upload_asset_for_windows] | |
name: Write Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout-cone-mode: false | |
sparse-checkout: | | |
CHANGELOG.md | |
- name: Make Directory For Download Artifacts | |
run: | | |
mkdir -p download-artifacts | |
- name: 📦️⏬ Download Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
path: download-artifacts | |
- name: Log artifact download | |
run: | | |
ls -alh | |
ls -alh download-artifacts | |
- name: Get Tagname | |
id: tag_name | |
run: | | |
echo "current_version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: Changelog Reader | |
id: changelog_reader | |
uses: mindsers/changelog-reader-action@v2 | |
with: | |
version: ${{ steps.tag_name.outputs.current_version }} | |
path: ./CHANGELOG.md | |
- name: 🚀 Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
prerelease: false | |
name: ${{ github.ref_name }} | |
tag_name: ${{ github.ref }} | |
body: ${{ steps.changelog_reader.outputs.changes }} | |
fail_on_unmatched_files: true | |
files: | | |
./download-artifacts/artifact-windows/NF.Tool.UnityPackage.Console.exe |