question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Automated Release

See original GitHub issue

What about automated releases? Every commit to main branch can be a new version

Workflow:

name: release
on: push

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v1
        with:
          node-version: 14.x

      - run: yarn install
      - run: yarn test
      - run: yarn prepare

      - name: Release
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
        run: npx semantic-release --branches main

Issue Analytics

  • State:open
  • Created a year ago
  • Comments:6 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
chrispadercommented, Sep 12, 2022

I can maybe work on that soon. Have been working on CI/CD and automation a lot lately, so i hope i’ll get it right 😅

1reaction
akinncarcommented, Jul 18, 2022

You don’t need to disable it! you can generate a specific token for automations image

Read more comments on GitHub >

github_iconTop Results From Across the Web

A (mostly) automated release process | by Mike Nikles - Medium
Release management is the process of managing, planning, scheduling and controlling a software build through different stages and environments; including ...
Read more >
Top 10 Benefits of Automated Release Management
Automated release management is an essential aspect of every DevOps strategy. Release management is the process of planning and working through ...
Read more >
Continuous Delivery - Automating the Release Process
Continuous delivery makes it possible to release new features quickly and reliably. It provides fast feedback to developers. The software is ...
Read more >
Best Release Automation Software for 2022 - PeerSpot
Top 8 Release Automation ; Microsoft Azure DevOps · 55,767 ; Red Hat Ansible Automation Platform · 30,206 ; GitLab · 21,978 ;...
Read more >
6 Top Release Automation Tools: Reviews from the Tech ...
Release automation (RA) refers to the process of automatically deploying an application or update across the complete release lifecycle, ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found