Skip to content

Commit 5eceb39

Browse files
authored
Merge pull request #2 from dsanders11/patch-1
fix: remove top-level env key
2 parents 61ce691 + a666392 commit 5eceb39

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ inputs:
88

99
runs:
1010
using: "composite"
11-
env:
12-
DIR: /tmp/semantic-release-packages
1311
steps:
1412
- name: Setup Node.js
1513
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
1614
with:
1715
node-version: 24.10.0
1816

1917
- name: Set up publishing environment
18+
env:
19+
DIR: /tmp/semantic-release-packages
2020
run: |
2121
mkdir $DIR
2222
cp ${{ github.action_path }}/package.json $DIR/package.json
@@ -32,5 +32,6 @@ runs:
3232
run: $DIR/node_modules/.bin/semantic-release
3333
shell: bash
3434
env:
35+
DIR: /tmp/semantic-release-packages
3536
GITHUB_ACTION: 1
3637
GITHUB_TOKEN: ${{ inputs.github-token }}

0 commit comments

Comments
 (0)