Skip to content

Commit

Permalink
[fea] setup tag-release pipeline (#188)
Browse files Browse the repository at this point in the history
* fea: setup tag release workflow

* 0.1.1
  • Loading branch information
marco-souza authored Oct 3, 2024
1 parent 82fd585 commit c9e5b62
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tag release

on:
push:
branches:
- main
paths:
- package.json

jobs:
gh-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Create release with tag
uses: marco-souza/tag-release@1.0.1
with:
version-file: package.json
token: ${{ secrets.GITHUB_TOKEN }}

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webapp",
"homepage": "https://podcodar-webapp.web.app/",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit c9e5b62

Please sign in to comment.