-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Description
I have a workflow running on a GitHub Enterprise runner and need to override certain NPM directories/files like ~/.npm and ~/.npmrc.
The step below shows the environment variables I use in other actions. But for some reason the default ~/.npm location is being used instead of /home/github/npm_cache. If I exec into the container running this job, and set those environment variables manually, /home/github/npm_cache will be used correctly.
Does anyone know if these environment variables, NPM_CONFIG_PREFIX and NPM_CONFIG_GLOBALCONFIG, can be used with this action? Or another way to override them?
- name: NPM configuration
run: |
echo '${{ secrets.NPMRC }}' | base64 -d > /home/github/.npmrc
echo 'cache=/home/github/npm_cache' >> /home/github/.npmrc
- name: Semantic Release
id: semantic-release
uses: codfish/semantic-release-action@v2.1.0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_CONFIG_GLOBAL: /home/github/.gitconfig
NPM_CONFIG_PREFIX: /home/github/node_modules
NPM_CONFIG_GLOBALCONFIG: /home/github/.npmrc
with:
branches: |
[
"main"
]
additional_packages: |
[
"@google/semantic-release-replace-plugin",
"@semantic-release/git"
]
plugins: |
[
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/github", {
"githubUrl": "https://test.github.example.com",
"githubApiPathPrefix": "/api/v3"
}],
["@google/semantic-release-replace-plugin", {
"replacements": [
{
"files": ["Chart.yaml"],
"from": "version: .*",
"to": "version: ${nextRelease.version}",
"results": [
{
"file": "Chart.yaml",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
}
]
}],
["@semantic-release/git", {
"assets": ["Chart.yaml"]
}]
]
Metadata
Metadata
Assignees
Labels
No labels