Skip to content

Commit

Permalink
adding v1 tagged release flow
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar authored Jun 18, 2022
1 parent 9ec05ad commit 486d09b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,9 @@ jobs:
-
draft: true
prerelease: false
- name: Update v1 release with the latest code
run: |
git config user.name gkr-bot
git config user.email [email protected]
git tag -fa v1 -m "Updated v1 tag with the latest code"
git push origin v1 --force
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- # step1
- # step 2
- # step n, use it as the last step
- uses: gautamkrishnar/keepalive-workflow@master # using the workflow with default settings
- uses: gautamkrishnar/keepalive-workflow@v1 # using the workflow with default settings
```
<details>
<summary>Let's take an example of [Waka Readme](https://github.com/athul/waka-readme)</summary>
Expand All @@ -52,7 +52,7 @@ jobs:
- uses: athul/waka-readme@master
with:
WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }}
- uses: gautamkrishnar/keepalive-workflow@master # using the workflow with default settings
- uses: gautamkrishnar/keepalive-workflow@v1 # using the workflow with default settings
```
</details>
Expand Down

0 comments on commit 486d09b

Please sign in to comment.