Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sudo-arash authored Sep 15, 2024
1 parent 4689f46 commit 82f790e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,16 @@ jobs:
name: built-app
path: dist/

- name: Create Git Tag
id: tag
run: |
TAG_NAME="v$(date +'%Y%m%d%H%M%S')"
echo "TAG_NAME=$TAG_NAME" >> $GITHUB_ENV
git tag $TAG_NAME
git push origin $TAG_NAME
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: dist/network_scanner
tag_name: ${{ env.TAG_NAME }}

0 comments on commit 82f790e

Please sign in to comment.