We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ea695a commit 622f396Copy full SHA for 622f396
action.yml
@@ -8,6 +8,8 @@ inputs:
8
9
runs:
10
using: "composite"
11
+ env:
12
+ DIR: /tmp/semantic-release-packages
13
steps:
14
- name: Setup Node.js
15
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
@@ -16,7 +18,6 @@ runs:
16
18
17
19
- name: Set up publishing environment
20
run: |
- DIR=/tmp/semantic-release-packages
21
mkdir $DIR
22
cp ${{ github.action_path }}/package.json $DIR/package.json
23
cp -r ${{ github.action_path }}/.yarn $DIR/.yarn
@@ -28,7 +29,7 @@ runs:
28
29
shell: bash
30
31
- name: Run semantic release
- run: semantic-release
32
+ run: $DIR/node_modules/.bin/semantic-release
33
34
env:
35
GITHUB_ACTION: 1
0 commit comments