Skip to content

Commit 05a2c97

Browse files
committed
add automated release action
1 parent f513f68 commit 05a2c97

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/changelog.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Tagged Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
tagged-release:
10+
name: Tagged Release
11+
runs-on: ubuntu-18.04
12+
13+
steps:
14+
- uses: "marvinpinto/action-automatic-releases@latest"
15+
with:
16+
repo_token: "${{ github.token }}"
17+
prerelease: false

.github/workflows/release.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,5 @@ jobs:
6060
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
6161
publish_dir: ./packages/site/out
6262
cname: tamagui.dev
63+
64+

0 commit comments

Comments
 (0)