From a697570c76d679ba5eda81ef3fa67480ed17b043 Mon Sep 17 00:00:00 2001 From: Ashley Date: Mon, 30 Oct 2023 19:44:04 +0000 Subject: [PATCH] Update release.yml to cleanup and publish to GitHub Packages The release.yml file has been updated to include a new step for cleanup and removal of the .npmrc file. Additionally, the existing step for publishing to GitHub Packages has been modified to include authentication using the GitHub token. --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4b426bc..e42c5f3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,6 +48,9 @@ jobs: run: | sed -i 's/"name": ".*"/"name": "@wizarrrr\/wizarr-vue-modal"/' package.json + - name: Cleanup + run: rm .npmrc + - name: Publish to GitHub Packages run: | echo "//npm.pkg.github.com/:__authToken={{ secrets.GITHUB_TOKEN }}" > .npmrc