forked from cypress-io/github-action
-
Notifications
You must be signed in to change notification settings - Fork 2
36 lines (34 loc) · 1.2 KB
/
release.yml
File metadata and controls
36 lines (34 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: release
on:
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-24.04
name: release
# # only release from the master branch
# if: github.ref == 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 24.14.0
- run: npm ci
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v6
id: semantic
with:
dry_run: true
branches: prime
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# - name: Push updates to branch for major version
# # if there is a new version published, let's say v1.2.3
# # then this step will update branch "v1" to this commit
# # https://github.com/cypress-io/github-action/branches
# if: steps.semantic.outputs.new_release_published == 'true'
# run: 'git push https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git HEAD:refs/heads/v${{steps.semantic.outputs.new_release_major_version}}'
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}