Skip to content

Commit

Permalink
Add github action to publish release
Browse files Browse the repository at this point in the history
  • Loading branch information
mdgrs-mei committed Mar 28, 2023
1 parent b49df94 commit bdb68fc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish Release
on:
push:
tags:
- "v*.*.*"

jobs:
publish_release:
name: Publish Release
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3

- name: Create Zip
run: |
zip -r outlook-taskbar-notifier.zip ./ -x "*.git*"
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "outlook-taskbar-notifier.zip"

0 comments on commit bdb68fc

Please sign in to comment.