From 2c1da253d54f2e849610722b5373ed5df8217728 Mon Sep 17 00:00:00 2001 From: Jonghyeon Ko Date: Mon, 13 Oct 2025 14:49:48 +0900 Subject: [PATCH] ci: oidc --- .github/workflows/deployment.yml | 8 ++++---- .gitignore | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 34413fa9..2c836d5e 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -52,6 +52,9 @@ jobs: node-version-file: '.nvmrc' cache: 'yarn' + - name: Update npm + run: npm install -g npm@11.5.1 + - name: Install dependencies run: yarn install @@ -59,11 +62,8 @@ jobs: run: yarn version patch - name: Publish package - run: | - echo "npmAuthToken: \${NPM_TOKEN}" >> .yarnrc.yml - yarn npm publish + run: yarn npm publish env: - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} NODE_OPTIONS: --max-old-space-size=8192 - name: Set git username with email diff --git a/.gitignore b/.gitignore index 87897434..f5396519 100644 --- a/.gitignore +++ b/.gitignore @@ -24,4 +24,6 @@ coverage .vitepress/cache .vitepress/dist -.env \ No newline at end of file +.env + +.DS_Store