Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Arteiii committed Feb 5, 2024
1 parent 79d5176 commit ca384b9
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Build and Release

on:
push:
branches:
- workflowTest
tags:
- "v*.*.*"

jobs:
build:
Expand Down Expand Up @@ -48,18 +48,24 @@ jobs:
fi
echo "Latest tag: $latest_tag"
echo "TAG=$latest_tag" >> $GITHUB_ENV
- name: Display release version
run: |
echo "Release version: ${{ env.TAG }}"
- name: Download Artifact
uses: actions/download-artifact@v2
with:
name: lib-artifact
path: x64/Release

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.get_tag.outputs.tag }}
files: |
x64/Release/*
tag_name: ${{ env.TAG }}
files: x64/Release/*
token: ${{ secrets.GITHUB_TOKEN }}

- name: Comment on Release
run: |
Expand Down

0 comments on commit ca384b9

Please sign in to comment.