Skip to content

Commit a1d0167

Browse files
committed
fix(build): remove unused environment variables from build step
- Eliminated RELEASE_TAG and VERSION from the build job's environment variables as they were not utilized in the subsequent steps.
1 parent a07bc3c commit a1d0167

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/build_app.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,6 @@ jobs:
162162
env:
163163
SUFFIX: ${{ matrix.suffix }}
164164
RELEASE_ID: ${{ needs.create-release.outputs.release_id }}
165-
RELEASE_TAG: ${{ needs.create-release.outputs.tag }}
166-
VERSION: ${{ needs.create-release.outputs.version }}
167165
with:
168166
github-token: ${{ secrets.YGUI_TOKEN }}
169167
script: |
@@ -184,9 +182,7 @@ jobs:
184182
input_artifact_name: `dist-${suffix}`,
185183
output_artifact_name: `signed-dist-${suffix}`,
186184
callback_stage: `exe-${suffix}`,
187-
release_id: parseInt(process.env.RELEASE_ID),
188-
release_tag: process.env.RELEASE_TAG,
189-
version: process.env.VERSION
185+
release_id: parseInt(process.env.RELEASE_ID)
190186
}
191187
});
192188

0 commit comments

Comments
 (0)