From a4355e54bce0cccac44bbd4a333f9695a23ee7a6 Mon Sep 17 00:00:00 2001 From: Judit Greskovits <329441+juditgreskovits@users.noreply.github.com> Date: Mon, 9 Dec 2024 14:05:14 +0000 Subject: [PATCH 1/2] chore: introduce small readme change --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9289711..71c8be9 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,5 @@ Set of nx plugins to empower your NX workspace ## Want to contribute? See the [Contribution Guidelines](/CONTRIBUTING.md). + +## Tmp main branch From 98da36cabcbf64b9b75a00acca4de78320c56c1d Mon Sep 17 00:00:00 2001 From: Judit Greskovits <329441+juditgreskovits@users.noreply.github.com> Date: Mon, 9 Dec 2024 14:27:09 +0000 Subject: [PATCH 2/2] Chore/fix release (#115) * chore: remove SAML token and test checkout without it * chore: add workflow dispatch --- .github/workflows/release.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6c7d06e..a7d21ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,7 @@ name: Release on: + workflow_dispatch: push: branches: - main @@ -11,8 +12,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - with: - token: ${{ secrets.SAML_ACCOUNT_TOKEN }} + # with: + # token: ${{ secrets.SAML_ACCOUNT_TOKEN }} - uses: ./.github/actions/prepare @@ -25,11 +26,12 @@ jobs: echo "scope=@mands" > .npmrc echo "@mands:registry=https://registry.npmjs.org/" >> .npmrc echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - pnpm publish --access=public + cat .npmrc + # pnpm publish --access=public - VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[",]//g') - echo "Tagging version $VERSION" - git config user.name release-bot - git config user.email release-bot@mnscorp.net - git tag -a $VERSION -m "Version ${VERSION}" - git push origin $VERSION + # VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[",]//g') + # echo "Tagging version $VERSION" + # git config user.name release-bot + # git config user.email release-bot@mnscorp.net + # git tag -a $VERSION -m "Version ${VERSION}" + # git push origin $VERSION