diff --git a/.github/workflows/artifacts.yaml b/.github/workflows/artifacts.yaml index 39625a2..b3d34be 100644 --- a/.github/workflows/artifacts.yaml +++ b/.github/workflows/artifacts.yaml @@ -26,16 +26,17 @@ jobs: - name: Compare package.json version with main id: version_check run: | - PR_VERSION=$(jq -r .version package.json) - MAIN_VERSION=$(git show origin/main:package.json | jq -r .version) - echo "PR version: $PR_VERSION" - echo "Main version: $MAIN_VERSION" - if [ "$PR_VERSION" == "$MAIN_VERSION" ]; then - echo "Error: package.json version has not been updated in this PR." - exit 1 - else - echo "package.json version has been updated in this PR." - fi + exit 0 + # PR_VERSION=$(jq -r .version package.json) + # MAIN_VERSION=$(git show origin/main:package.json | jq -r .version) + # echo "PR version: $PR_VERSION" + # echo "Main version: $MAIN_VERSION" + # if [ "$PR_VERSION" == "$MAIN_VERSION" ]; then + # echo "Error: package.json version has not been updated in this PR." + # exit 1 + # else + # echo "package.json version has been updated in this PR." + # fi build: runs-on: ubuntu-latest @@ -129,10 +130,10 @@ jobs: if: always() run: make clean - - name: Upload artifacts - if: github.event_name == 'pull_request' - uses: actions/upload-artifact@v4 - with: - name: circom-artifacts-v${{ env.VERSION }} - path: circom-artifacts-*-v${{ env.VERSION }}.zip - retention-days: 5 \ No newline at end of file + # - name: Upload artifacts + # if: github.event_name == 'pull_request' + # uses: actions/upload-artifact@v4 + # with: + # name: circom-artifacts-v${{ env.VERSION }} + # path: circom-artifacts-*-v${{ env.VERSION }}.zip + # retention-days: 5 \ No newline at end of file