Skip to content

Commit

Permalink
ci: fix manual release
Browse files Browse the repository at this point in the history
  • Loading branch information
easingthemes committed Oct 19, 2023
1 parent 6d4caa7 commit 4c8e26c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
language: [ 'javascript' ]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/manual-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ on:
description: 'Version'
type: choice
required: true
default: patch
default: fix
options:
- patch
- minor
- major
- fix
- feat
- BREAKING CHANGE
dryRun:
description: 'DryRun'
type: boolean
Expand Down Expand Up @@ -57,7 +57,9 @@ jobs:
node-version: ${{ matrix.NODE_VERSION }}
- name: Commit trigger
run: |
git commit --allow-empty -m "${{ github.event.inputs.version }}: Trigger Manual Release"
git commit --allow-empty -m "${{ github.event.inputs.version }}: Trigger Manual Release
${{ github.event.inputs.version }}:Forced Manual Release without code changes"
- name: Install dependencies
run: npm ci
- name: Build Library
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 4c8e26c

Please sign in to comment.