We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad86ca commit 6573086Copy full SHA for 6573086
2 files changed
.github/workflows/tag.yml
@@ -9,6 +9,8 @@ on:
9
- main
10
tags:
11
- "v.*"
12
+ paths:
13
+ - 'package.json'
14
15
jobs:
16
tag:
@@ -22,17 +24,6 @@ jobs:
22
24
- name: set version to env
23
25
run: node -p -e '`VERSION=${require("./package.json").version}`' >> $GITHUB_ENV
26
- # バージョン情報持つタグを付与する
-# - name: add version tag
27
-# uses: pkgdeps/git-tag-action@v2
28
-# with:
29
-# version: ${{ env.VERSION }}
30
-# github_token: ${{ secrets.GITHUB_TOKEN }}
31
-# github_repo: ${{ github.repository }}
32
-# git_commit_sha: ${{ github.sha }}
33
-# git_tag_prefix: "v"
34
-
35
36
- name: Create Release
37
id: create_release
38
uses: actions/create-release@v1
.replit
@@ -0,0 +1,8 @@
1
+modules = ["nodejs-20"]
2
+run = "yarn run dev"
3
+
4
+[nix]
5
+channel = "stable-24_05"
6
7
+[deployment]
8
+run = ["sh", "-c", "yarn run dev"]
0 commit comments