Automated Release
See original GitHub issueWhat 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:
- Created a year ago
- Comments:6 (5 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
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 😅
You don’t need to disable it! you can generate a specific token for automations