Skip to content

Commit

Permalink
fix(ci): fix refs tag bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihoub2 committed Oct 9, 2024
1 parent 17cfbb9 commit 16bd09b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
tag_name: ${{ steps.tag.outputs.tag }}
body: ${{ steps.changelog.outputs.changes }}

deploy:
Expand Down
Binary file modified bun.lockb
Binary file not shown.
12 changes: 1 addition & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,10 @@
"server",
"client"
],
"devDependencies": {
"@types/imapflow": "^1.0.19",
"@types/mailparser": "^3.4.4",
"concurrently": "^8.2.2"
},
"scripts": {
"start:client": "cd client && npm run dev",
"start:server": "cd server && bun run --watch server.ts",
"start": "concurrently \"npm run start:client\" \"bun run start:server\"",
"deploy": "git switch main && git pull origin main --rebase --tags && git merge origin staging && npm version $npm_config_level && git push origin main --tags && git switch staging"
},
"dependencies": {
"@types/imapflow": "^1.0.19",
"imapflow": "^1.0.164",
"mailparser": "^3.7.1"
"deploy": "git switch main && git pull origin main --rebase --tags && git merge origin/staging && npm version $npm_config_level && git push origin main --tags && git switch staging"
}
}

0 comments on commit 16bd09b

Please sign in to comment.