Giter VIP home page Giter VIP logo

Comments (4)

 avatar commented on July 17, 2024

You could remote the build-number-X tag and make a new one yourself, e.g. build-number-50 if you want 50 as the starting point.

from build-number.

rvalentini avatar rvalentini commented on July 17, 2024

You could set up a cron job to trigger this little bash script. It expects the new starting point as argument

#!/bin/bash
if [ -z "$1" ]
  then
    echo "To reset the build-number please specify a new start number"
  else
    echo "Setting build number to $1 ..."

    #remove the old build-number tag remote & local
    git fetch --tags
    git push -d origin $(git tag -l "build-number-*")
    git tag -d $(git tag -l "build-number-*")

    #set new build-number
    git tag build-number-$1
    git push origin build-number-$1

    echo "DONE"
fi

from build-number.

PradeepChireddyTR avatar PradeepChireddyTR commented on July 17, 2024

You could remote the build-number-X tag and make a new one yourself, e.g. build-number-50 if you want 50 as the starting point.

My build number is running at 150 now.

  • name: Generate build number
    id: buildnumber-0
    uses: einaregilsson/build-number@v2
    with:
    token: ${{secrets.github_token}}

How to reset the build to 1?

from build-number.

 avatar commented on July 17, 2024

@PradeepChireddyTR You can't do it in the YAML file, you can only do it by changing the tag build-number-x.

from build-number.

Related Issues (15)

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.