-
-
Notifications
You must be signed in to change notification settings - Fork 492
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Home directory cannot be accessed via ~ #368
Comments
This is because Use |
Actually some of the actions allow for Example step for steps:
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}- |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description:
I think that the home directory cannot be accessed via
~
. It does not fail, but cannot find the files that obviously should be there.To Reproduce:
~
.Example Github Action:
Expected behavior:
The file from home directory is uploaded to the release.
Additional Info:
The text was updated successfully, but these errors were encountered: