Giter Site home page Giter Site logo

Comments (3)

Daniele-Tentoni avatar Daniele-Tentoni commented on August 20, 2024

I ran in the same problem too

from semantic-release-replace-plugin.

JanJordan avatar JanJordan commented on August 20, 2024

we had the same problems and maybe here are some hints to resolve it:

Our configs finally started to work AFTER once a simple replace without a results-check had been done, something likes this:

 [
            "@google/semantic-release-replace-plugin",
            {
                "replacements": [
                    {
                        "files": ["src/app-version.ts"],
                        "from": "appVersion = '.*'",
                        "to": "appVersion = '${nextRelease.version}'"
                    },
                ]
            }
        ],

AFTER this initial replacement our configs now are working as expected:

[
            "@google/semantic-release-replace-plugin",
            {
                "replacements": [
                    {
                        "files": ["src/app-version.ts"],
                        "from": "appVersion = '.*'",
                        "to": "appVersion = '${nextRelease.version}'",
                        "results": [
                            {
                                "file": "src/app-version.ts",
                                "hasChanged": true,
                                "numMatches": 1,
                                "numReplacements": 1
                            }
                        ],
                        "countMatches": true
                    }
                    
                ]
            }
        ],

So it seemed that there maybe is a problem with the state coming in from semantic release which is compared to the expected results if there has not been a successful run and git commit before.

We encountered this in a new repo in which we copy&pasted sem rel configs from another repo with similar structure (and where it was working perfectly).

from semantic-release-replace-plugin.

jpoehnelt avatar jpoehnelt commented on August 20, 2024

I don't see anything in the code that would cause this. 🤔

from semantic-release-replace-plugin.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.