Skip to content

Commit

Permalink
test: update typeList by CICD
Browse files Browse the repository at this point in the history
  • Loading branch information
LeHoDiep committed Mar 22, 2024
1 parent aab18cf commit f9ad4d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Run renderDtype
run: npm run renderDtype
env:
MY_SECRET: ${{ secrets.GITHUB_TOKEN}}
MY_SECRET: ${{ secrets.ENV_DANNGER}}
# - name: Update submodule
# run: |
# git stash # Stash any changes
Expand Down
3 changes: 2 additions & 1 deletion src/utils/proto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ class ProtobufjsRender {

if (fileTsPre != fileTsAfter) {
console.log('TWO FILE IS DIFFERENT, PREPARE TO PUSH')
console.log('TOKEN AUT: ', process.env.GITHUB_TOKEN)
const secretValue = process.env.GITHUB_TOKEN
console.log('TOKEN AUT: ', secretValue)
// Create a personal access token at https://github.com/settings/tokens/new?scopes=repo
const octokit = new Octokit({ auth: process.env.GITHUB_TOKEN })

Expand Down

0 comments on commit f9ad4d8

Please sign in to comment.