From 2f91d2b74060d1c5dd11a7064d41cdc5eed69090 Mon Sep 17 00:00:00 2001 From: victor mazeli Date: Tue, 25 Jul 2023 04:14:58 -0500 Subject: [PATCH] update on ci --- .github/workflows/build-on-merge.yml | 2 +- .github/workflows/build-on-pr.yml | 2 +- .github/workflows/update-version.yml | 31 ---------------------------- 3 files changed, 2 insertions(+), 33 deletions(-) delete mode 100644 .github/workflows/update-version.yml diff --git a/.github/workflows/build-on-merge.yml b/.github/workflows/build-on-merge.yml index e2f0580..0f0a7e5 100644 --- a/.github/workflows/build-on-merge.yml +++ b/.github/workflows/build-on-merge.yml @@ -15,4 +15,4 @@ jobs: build: uses: ./.github/workflows/reusable-workflow.yml secrets: - GHB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GHB_TOKEN: ${{ secrets.PAT_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/build-on-pr.yml b/.github/workflows/build-on-pr.yml index 8f612e7..9b8adc7 100644 --- a/.github/workflows/build-on-pr.yml +++ b/.github/workflows/build-on-pr.yml @@ -12,4 +12,4 @@ jobs: build: uses: ./.github/workflows/reusable-workflow.yml secrets: - GHB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GHB_TOKEN: ${{ secrets.PAT_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/update-version.yml b/.github/workflows/update-version.yml deleted file mode 100644 index 0b2d0b9..0000000 --- a/.github/workflows/update-version.yml +++ /dev/null @@ -1,31 +0,0 @@ -# name: Update Version - -# on: -# push: -# branches: -# - main - -# jobs: -# update-version: -# runs-on: ubuntu-latest - -# steps: -# - name: Check Out Repository -# uses: actions/checkout@v3 - -# - name: Set Node.js -# uses: actions/setup-node@v3 -# with: -# node-version: 16 -# - run: npm ci - -# - name: Configure Git credentials -# run: | -# git config --global user.name "victor mazeli" -# git config --global user.email "victor.vic.mazeli@gmail.com" -# git config --global credential.helper store -# git remote set-url origin https://${{ secrets.PAT_TOKEN }}@github.com/victormazeli/raven-atlas-node.git -# - name: Update Version -# run: | -# npm version patch -# git push --follow-tags