Skip to content

Commit

Permalink
added create tar file step
Browse files Browse the repository at this point in the history
  • Loading branch information
a7medayman6 committed Mar 3, 2023
1 parent 1d2c1b7 commit 1e84299
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Release Application
on:
push:
branches:
- master
tags:
- v*

jobs:
release:
Expand Down Expand Up @@ -30,10 +30,11 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.REPOSITORY_ACCESS_TOKEN }}
with:
tag_name: v1.0.0
release_name: Release v1.0.0
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Create tar file
run: |
tar -czvf tinygit.tar.gz ./dist/tinygit
Expand Down

0 comments on commit 1e84299

Please sign in to comment.