diff --git a/.github/workflows/build_electron_app.yml b/.github/workflows/build_electron_app.yml index 39fb55e..d8df69c 100644 --- a/.github/workflows/build_electron_app.yml +++ b/.github/workflows/build_electron_app.yml @@ -18,10 +18,12 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/main' steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 # Ensure all tags are fetched - name: Bump version and push tag - uses: phips28/gh-action-bump-version@v8.x + uses: phips28/gh-action-bump-version@v7.0.0 with: - github-token: ${{ env.GH_TOKEN }} + github-token: ${{ secrets.GH_TOKEN }} tag-prefix: '' minor: true # Change this to 'true' for minor, 'false' for patch updates