File tree Expand file tree Collapse file tree 4 files changed +23
-2
lines changed Expand file tree Collapse file tree 4 files changed +23
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## [ v2.0.1] ( https://github.com/ansidev/astro-basic-template/compare/v2.0.0...v2.0.1 ) (2023-02-26)
2
+
3
+ ### Bug Fixes
4
+
5
+ - ** deployment:** add missing environment variables
6
+
7
+ Full Changelog: [ v2.0.0...v2.0.1] ( https://github.com/ansidev/astro-basic-template/compare/v2.0.0...v2.0.1 )
Original file line number Diff line number Diff line change @@ -117,11 +117,17 @@ jobs:
117
117
env :
118
118
NETLIFY_DEPLOY_PREFIX : ${{ needs.set_deploy_environment.outputs.netlify_deploy_prefix }}
119
119
NETLIFY_DEPLOY_ALIAS : ${{ needs.set_deploy_environment.outputs.netlify_deploy_alias }}
120
+ SITE_GA_ID : ${{ vars.SITE_GA_ID }}
121
+ SITE_SWETRIX_ID : ${{ vars.SITE_SWETRIX_ID }}
122
+ SITE_COUNTER_ANALYTICS_ID : ${{ vars.SITE_COUNTER_ANALYTICS_ID }}
120
123
shell : bash
121
124
run : |
122
125
set -e
123
126
[[ ${PROD:-false} == "true" ]] && \
124
- OUTPUT=$(pnpm netlify deploy \
127
+ OUTPUT=$(GA_ID=$SITE_GA_ID \
128
+ SWETRIX_ID=$SITE_SWETRIX_ID \
129
+ COUNTER_ANALYTICS_ID=$SITE_COUNTER_ANALYTICS_ID \
130
+ pnpm netlify deploy \
125
131
--auth ${{ env.NETLIFY_AUTH_TOKEN }} \
126
132
--site ${{ env.NETLIFY_SITE_ID }} \
127
133
--json \
Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org ) .
6
6
7
+ ## [ v2.0.1] ( https://github.com/ansidev/astro-basic-template/compare/v2.0.0...v2.0.1 ) (2023-02-26)
8
+
9
+ ### Bug Fixes
10
+
11
+ - ** deployment:** add missing environment variables
12
+
13
+ Full Changelog: [ v2.0.0...v2.0.1] ( https://github.com/ansidev/astro-basic-template/compare/v2.0.0...v2.0.1 )
14
+
7
15
## v2.0.0 (2023-02-26)
8
16
9
17
### Features
Original file line number Diff line number Diff line change 2
2
"name" : " leetcode-blog" ,
3
3
"description" : " Solutions for LeetCode problems - Written by ansidev" ,
4
4
"type" : " module" ,
5
- "version" : " 2.0.0 " ,
5
+ "version" : " 2.0.1 " ,
6
6
"license" : " MIT" ,
7
7
"scripts" : {
8
8
"dev" : " astro dev" ,
You can’t perform that action at this time.
0 commit comments